import './globals.css' import { Inter } from 'next/font/google' import Navbar from './components/Navbar' const inter = Inter({ subsets: ['latin'] }) export const metadata = { title: 'Tool Website', description: 'Eine Sammlung nützlicher Tools', } export default function RootLayout({ children, }: { children: React.ReactNode }) { return (