chore: format frontend with prettier

This commit is contained in:
forgejo-bot
2026-05-06 18:00:11 +00:00
parent 6fb9fadd11
commit 703e429e5c
17 changed files with 464 additions and 480 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>
);
}