| 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> | |
| ); | |
| } | |