mirror of
https://github.com/danielvici/tool-website.git
synced 2026-01-16 18:31:26 +00:00
28 lines
617 B
TypeScript
28 lines
617 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: 'A collection of useful web-based tools. Secure and Open Source.',
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<head>
|
|
<link rel="icon" type="image/vnd.microsoft.icon" href="/logo.ico" />
|
|
</head>
|
|
<body className="bg-zinc-900">
|
|
<Navbar />
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|