import type { Metadata } from "next"; import { GeistSans, GeistMono } from "geist/font"; import "./globals.css"; export const metadata: Metadata = { title: "rSwag — Merch for the rSpace Ecosystem", description: "Design and order custom merchandise for rSpace communities. Stickers, shirts, and more.", }; export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
rSwag
{children}
); }