first commit

This commit is contained in:
DerTyp7
2025-10-06 19:22:47 +02:00
commit aecc4cf549
75 changed files with 9303 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
import Footer from '@/components/Footer';
import Header from '@/components/Header';
import { ConfigProvider } from '@/contexts/ConfigContext';
import './index.scss';
export default async function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<ConfigProvider>
<body>
<Header />
{children}
<Footer currentYear={new Date().getFullYear()} />
</body>
</ConfigProvider>
</html>
);
}