import type { Metadata } from "next"; import { Inter, JetBrains_Mono, Instrument_Serif } from "next/font/google"; import Link from "next/link"; import Starfield from "@/components/Starfield"; import "./globals.css"; const inter = Inter({ subsets: ["latin"], variable: "--font-inter" }); const mono = JetBrains_Mono({ subsets: ["latin"], variable: "--font-jbmono" }); const serif = Instrument_Serif({ subsets: ["latin"], weight: "400", style: ["normal", "italic"], variable: "--font-serif", }); export const metadata: Metadata = { title: { default: "frieren", template: "%s · frieren" }, description: "A self-hosted archive of one person's code — browse and clone everything, write nothing.", }; export default function RootLayout({ children }: { children: React.ReactNode }) { return (