compost-capitalism-website/app/layout.tsx

33 lines
1.0 KiB
TypeScript

import type React from "react"
import type { Metadata } from "next"
import { GeistSans } from "geist/font/sans"
import { GeistMono } from "geist/font/mono"
import { Analytics } from "@vercel/analytics/next"
import { Suspense } from "react"
import "./globals.css"
export const metadata: Metadata = {
title: "Composting Capitalism | Building (Com)Post-Capitalism",
description:
"Exploring how we can decompose the excesses of capitalism and cultivate regenerative (com)post-capitalist systems that work for the many, not the few.",
generator: "v0.app",
icons: {
icon: "data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>💩</text></svg>",
},
}
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode
}>) {
return (
<html lang="en">
<body className={`font-sans ${GeistSans.variable} ${GeistMono.variable} antialiased`}>
<Suspense fallback={null}>{children}</Suspense>
<Analytics />
</body>
</html>
)
}