chore: format frontend with prettier

This commit is contained in:
forgejo-bot
2026-05-09 19:23:26 +00:00
parent d98b18aeb9
commit 1fcdc4ea6c
18 changed files with 484 additions and 502 deletions
+8 -8
View File
@@ -3,13 +3,13 @@ import Header from "./Header";
import { useTheme } from "../hooks/useTheme";
export default function Layout({ children }) {
const theme = useTheme();
const theme = useTheme();
return (
<div className="flex flex-col min-h-screen bg-ctp-base">
<Header theme={theme} />
<main className="flex-1">{children}</main>
<Footer />
</div>
);
return (
<div className="flex flex-col min-h-screen bg-ctp-base">
<Header theme={theme} />
<main className="flex-1">{children}</main>
<Footer />
</div>
);
}