23 lines
536 B
TypeScript
23 lines
536 B
TypeScript
|
|
import type { Metadata } from 'next';
|
||
|
|
import './globals.css';
|
||
|
|
|
||
|
|
export const metadata: Metadata = {
|
||
|
|
title: 'Kit - Your Creative Toolkit',
|
||
|
|
description: 'A curated collection of creative and utility tools for developers and creators',
|
||
|
|
keywords: ['tools', 'utilities', 'pastebin', 'paint', 'creative toolkit'],
|
||
|
|
};
|
||
|
|
|
||
|
|
export default function RootLayout({
|
||
|
|
children,
|
||
|
|
}: Readonly<{
|
||
|
|
children: React.ReactNode;
|
||
|
|
}>) {
|
||
|
|
return (
|
||
|
|
<html lang="en">
|
||
|
|
<body className="antialiased">
|
||
|
|
{children}
|
||
|
|
</body>
|
||
|
|
</html>
|
||
|
|
);
|
||
|
|
}
|