29 lines
748 B
TypeScript
29 lines
748 B
TypeScript
import type { Metadata } from 'next'
|
|
import './globals.css'
|
|
|
|
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">
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|