Prototyp fur die Navigationsleiste

Kleine anpassuungen Handy Ansicht
This commit is contained in:
2025-12-14 17:27:12 +01:00
parent 6e7eec9d66
commit 76791391d8
297 changed files with 29532 additions and 1 deletions

View File

@@ -1,6 +1,7 @@
import './globals.css';
import type { Metadata } from 'next';
import { Inter } from 'next/font/google';
import HandyAnsicht from '@/components/HandyAnsicht';
const inter = Inter({ subsets: ['latin'] });
@@ -22,7 +23,11 @@ export default function RootLayout({
}) {
return (
<html lang="de">
<body className={inter.className}>{children}</body>
<body className={inter.className}>
<HandyAnsicht>
{children}
</HandyAnsicht>
</body>
</html>
);
}