import { getOpenGraphMetadata } from "@/lib/utils"; import { Metadata } from "next"; export const metadata: Metadata = { title: "Products", description: "Explore our products and find the perfect one for you.", ...getOpenGraphMetadata("Products"), }; export default async function RootLayout({ children, }: { children: React.ReactNode; }) { return (
{children}
); }