set up Biome

This commit is contained in:
2025-10-28 17:17:41 -04:00
parent 5a5c72850d
commit a1ea385448
39 changed files with 2476 additions and 719 deletions
+6 -5
View File
@@ -1,10 +1,11 @@
---
import { ClientRouter } from 'astro:transitions';
import '../global.css';
import { ClientRouter } from "astro:transitions";
import Header from '@components/Header/Header.astro';
import Footer from '@components/Footer.astro';
import "../global.css";
import Footer from "@components/Footer.astro";
import Header from "@components/Header/Header.astro";
export interface Props {
title: string;
@@ -13,7 +14,7 @@ export interface Props {
};
}
const title = Astro.props.title || Astro.props.frontmatter?.title || 'Unknown';
const title = Astro.props.title || Astro.props.frontmatter?.title || "Unknown";
---
<!doctype html>