← back to Govarbitrage

src/app/layout.tsx

29 lines

import type { Metadata } from "next";
import "./globals.css";
import { publicBaseUrl } from "@/lib/site";

export const metadata: Metadata = {
  metadataBase: new URL(publicBaseUrl()),
  title: {
    default: "GovArbitrage — Government Surplus Arbitrage",
    template: "%s | GovArbitrage",
  },
  description:
    "Discover, research, value, and score government-surplus auction listings for resale arbitrage.",
  openGraph: {
    siteName: "GovArbitrage",
    type: "website",
  },
  twitter: {
    card: "summary_large_image",
  },
};

export default function RootLayout({ children }: { children: React.ReactNode }) {
  return (
    <html lang="en" className="dark">
      <body className="min-h-screen antialiased">{children}</body>
    </html>
  );
}