flowfi-network/app/layout.tsx

37 lines
1002 B
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: 'FlowFi — Everything Flows',
description: 'Finance as metabolism, not mechanism. Pre-distributive. Re-distributive. Naturally.',
openGraph: {
title: 'FlowFi — Everything Flows',
description: 'Finance as metabolism, not mechanism. Pre-distributive. Re-distributive. Naturally.',
url: 'https://flowfi.network',
siteName: 'FlowFi',
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>
)
}