alltornet-website/app/layout.tsx

59 lines
1.8 KiB
TypeScript

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,<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>",
},
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 (
<html lang="en">
<body className={`font-sans antialiased`}>
{children}
<Analytics />
</body>
</html>
)
}