36 lines
966 B
TypeScript
36 lines
966 B
TypeScript
import type { Metadata } from 'next'
|
|
import { Outfit, Caveat } from 'next/font/google'
|
|
import './globals.css'
|
|
|
|
const outfit = Outfit({
|
|
subsets: ['latin'],
|
|
variable: '--font-outfit',
|
|
})
|
|
|
|
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-deep text-foam font-sans antialiased ${outfit.variable} ${caveat.variable}`}>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|