import type { Metadata } from 'next' import Script from 'next/script' import { Geist, Geist_Mono, Hanken_Grotesk, Inter } from 'next/font/google' import './globals.css' const geistSans = Geist({ variable: '--font-geist-sans', subsets: ['latin'], }) const geistMono = Geist_Mono({ variable: '--font-geist-mono', subsets: ['latin'], }) const inter = Inter({ variable: '--font-inter', subsets: ['latin'], }) const hankenGrotesk = Hanken_Grotesk({ variable: '--font-hanken-grotesk', subsets: ['latin'], }) export const metadata: Metadata = { title: 'Standard.site - One schema. Every platform.', description: 'Standard.site provides shared lexicons for long-form publishing on AT Protocol. Making content easier to discover, index, and move across the ATmosphere.', metadataBase: new URL('https://standard.site'), } export default function RootLayout({children}: Readonly<{ children: React.ReactNode; }>) { return (
{ children } ) }