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 "./globals.css" const _geist = Geist({ subsets: ["latin"] }) const _geistMono = Geist_Mono({ subsets: ["latin"] }) export const metadata: Metadata = { metadataBase: new URL("https://alltor.net"), title: "alltor.net - The Alternative Internet", description: "A distributed, local-first, collaborative digital ecosystem. Access the alternative internet through physical USB keys and local mesh networks.", generator: "v0.app", icons: { icon: "data:image/svg+xml,", }, openGraph: { title: "alltor.net - The Alternative Internet", description: "A distributed, local-first, collaborative digital ecosystem. Access the alternative internet through physical USB keys and local mesh networks.", url: "https://alltor.net", siteName: "alltor.net", images: [ { url: "/og-image.jpg", width: 1200, height: 630, alt: "alltor.net - The Alternative Internet", }, ], locale: "en_US", type: "website", }, twitter: { card: "summary_large_image", title: "alltor.net - The Alternative Internet", description: "A distributed, local-first, collaborative digital ecosystem. Access the alternative internet through physical USB keys and local mesh networks.", images: ["/og-image.jpg"], }, } export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode }>) { return (
{children}