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,", }, openGraph: { 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.", url: "https://compostingcapitalism.com", siteName: "Composting Capitalism", images: [ { url: "/og-image.jpg", width: 1200, height: 630, alt: "Composting Capitalism - Building (Com)Post-Capitalism", }, ], locale: "en_US", type: "website", }, twitter: { card: "summary_large_image", 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.", images: ["/og-image.jpg"], }, } export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return (