chore: format frontend with prettier

This commit is contained in:
forgejo-bot
2026-05-21 19:32:44 +00:00
parent 472648582f
commit 166dce9e2f
18 changed files with 485 additions and 503 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>
);
}