Initial commit: Tool Website with Password Generator, Image Converter and Bookmarks

This commit is contained in:
danielvici123
2025-05-16 00:40:51 +02:00
commit d478acc6e3
19 changed files with 4049 additions and 0 deletions

25
app/layout.tsx Normal file
View File

@@ -0,0 +1,25 @@
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>
)
}