File size: 847 Bytes
c35213b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | import type { Metadata } from 'next';
import { Inter, JetBrains_Mono } from 'next/font/google';
import './globals.css';
const inter = Inter({
variable: '--font-inter',
subsets: ['latin'],
});
const jetMono = JetBrains_Mono({
variable: '--font-jet-mono',
subsets: ['latin'],
});
export const metadata: Metadata = {
title: 'Wyvern Softworks',
description: 'Unlocking Digital Potential. Premium scripts, cracks, and tools.',
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`${inter.variable} ${jetMono.variable} antialiased bg-black text-white min-h-screen selection:bg-cyan-500/30 selection:text-cyan-50 font-sans`}
>
<div className="bg-noise"></div>
{children}
</body>
</html>
);
}
|