41 lines
1.0 KiB
TypeScript
41 lines
1.0 KiB
TypeScript
import type { Metadata } from 'next'
|
|
import { Permanent_Marker, Caveat } from 'next/font/google'
|
|
import './globals.css'
|
|
|
|
const marker = Permanent_Marker({
|
|
weight: '400',
|
|
subsets: ['latin'],
|
|
variable: '--font-marker',
|
|
})
|
|
|
|
const caveat = Caveat({
|
|
subsets: ['latin'],
|
|
variable: '--font-caveat',
|
|
})
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'NoFi | No Finance. No Money. No Tokens. Just Do Less.',
|
|
description: 'The revolutionary movement of doing absolutely nothing with your money. Because you don\'t have any. And that\'s the point.',
|
|
openGraph: {
|
|
title: 'NoFi - The Anti-Finance Movement',
|
|
description: 'No Finance. No Money. No Tokens. Just Do Less.',
|
|
url: 'https://nofi.lol',
|
|
siteName: 'NoFi',
|
|
type: 'website',
|
|
},
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="en">
|
|
<body className={`bg-void text-zen font-mono antialiased ${marker.variable} ${caveat.variable}`}>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|