mirror of
https://github.com/danielvici/tool-website.git
synced 2026-01-16 18:31:26 +00:00
25 lines
485 B
TypeScript
25 lines
485 B
TypeScript
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 (
|
|
<html lang="de">
|
|
<body className={inter.className}>
|
|
<Navbar />
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|