prettier and package.json fix

This commit is contained in:
2026-05-21 21:32:03 +02:00
parent c3debba6c2
commit 6274478d7e
18 changed files with 465 additions and 485 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>
);
}