54 lines
1.2 KiB
TypeScript
54 lines
1.2 KiB
TypeScript
import type { Metadata } from 'next'
|
|
import { Space_Mono, Inter } from 'next/font/google'
|
|
import { Analytics } from '@vercel/analytics/next'
|
|
import './globals.css'
|
|
|
|
const spaceMono = Space_Mono({
|
|
weight: ['400', '700'],
|
|
subsets: ["latin"],
|
|
variable: '--font-mono'
|
|
});
|
|
|
|
const inter = Inter({
|
|
subsets: ["latin"],
|
|
variable: '--font-sans'
|
|
});
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'myc0punkz.xyz - The Underground Awaits',
|
|
description: 'Welcome to the underground of the underground. Where technology meets Earth wisdom. Sovereign infrastructure for the regenerative future.',
|
|
generator: 'v0.app',
|
|
icons: {
|
|
icon: [
|
|
{
|
|
url: '/icon-light-32x32.png',
|
|
media: '(prefers-color-scheme: light)',
|
|
},
|
|
{
|
|
url: '/icon-dark-32x32.png',
|
|
media: '(prefers-color-scheme: dark)',
|
|
},
|
|
{
|
|
url: '/icon.svg',
|
|
type: 'image/svg+xml',
|
|
},
|
|
],
|
|
apple: '/apple-icon.png',
|
|
},
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode
|
|
}>) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={`${inter.variable} ${spaceMono.variable} font-sans antialiased`}>
|
|
{children}
|
|
<Analytics />
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|