55 lines
1.3 KiB
TypeScript
55 lines
1.3 KiB
TypeScript
import type React from "react"
|
|
import type { Metadata } from "next"
|
|
import { Inter, Space_Mono } from "next/font/google"
|
|
import { Toaster } from "sonner"
|
|
import "./globals.css"
|
|
|
|
const inter = Inter({
|
|
subsets: ["latin"],
|
|
variable: "--font-inter",
|
|
})
|
|
|
|
const spaceMono = Space_Mono({
|
|
subsets: ["latin"],
|
|
weight: ["400", "700"],
|
|
variable: "--font-space-mono",
|
|
})
|
|
|
|
export const metadata: Metadata = {
|
|
title: "Jeff Emmett - Token Engineering & Regenerative Economics",
|
|
description:
|
|
"Token engineering researcher exploring bonding curves, Web3 economies, and mycoeconomics. Co-founder of Commons Stack and MycoFi.",
|
|
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}
|
|
<Toaster richColors position="bottom-center" />
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|