import type { Metadata } from "next"; import { Inter } from "next/font/google"; import "./globals.css"; import Navbar from "@/components/Navbar"; import Footer from "@/components/Footer"; import ErrorBoundary from "@/components/ErrorBoundary"; import { APP_NAME, APP_DESCRIPTION, BETA_DISCLAIMER } from "@/lib/constants"; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], display: "swap", }); export const metadata: Metadata = { title: { default: `${APP_NAME} — ${APP_DESCRIPTION}`, template: `%s | ${APP_NAME}`, }, description: APP_DESCRIPTION, openGraph: { title: APP_NAME, description: APP_DESCRIPTION, type: "website", siteName: APP_NAME, }, robots: { index: true, follow: true, }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (