import type React from "react" import type { Metadata } from "next" import { Geist, Geist_Mono } from "next/font/google" import { Analytics } from "@vercel/analytics/next" import { Toaster } from "../components/ui/sonner" import "./globals.css" const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }) const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }) export const metadata: Metadata = { title: "dokindthings.fund", description: "Community allocated streams for acts of kindness", generator: "v0.app", icons: { icon: "data:image/svg+xml,", }, openGraph: { title: "dokindthings.fund", description: "Community allocated streams for acts of kindness", url: "https://dokindthings.fund", siteName: "dokindthings.fund", images: [ { url: "/og-image.jpg", width: 1200, height: 630, alt: "dokindthings.fund - Community Allocated Streams for Acts of Kindness", }, ], locale: "en_US", type: "website", }, twitter: { card: "summary_large_image", title: "dokindthings.fund", description: "Community allocated streams for acts of kindness", images: ["/og-image.jpg"], }, } export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return (
{children}