import "./globals.css"; import { Inter } from "next/font/google"; import { EXAMPLE_PATH, CMS_NAME } from "@/lib/constants"; export const metadata = { title: `Next.js and ${CMS_NAME} Example`, description: `This is a blog built with Next.js and ${CMS_NAME}.`, }; const inter = Inter({ variable: "--font-inter", subsets: ["latin"], display: "swap", }); function Footer() { return ( ); } export default function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{children}
); }