import { Header } from "@/components/container-header"; import Navbar from "@/components/navbar"; import { DATA } from "@/app/resume"; import { cn } from "@/lib/utils"; import type { Metadata } from "next"; import { Inter as FontSans } from "next/font/google"; import "./globals.css"; import { Providers } from "@/components/providers"; import { Footer } from "@/components/container-footer"; const fontSans = FontSans({ subsets: ["latin"], variable: "--font-sans", }); export const metadata: Metadata = { metadataBase: new URL(DATA.url), title: { default: DATA.name, template: `%s | ${DATA.name}`, }, description: DATA.description, openGraph: { title: `${DATA.name}`, description: DATA.description, url: DATA.url, siteName: `${DATA.name}`, locale: "en_US", type: "website", }, robots: { index: true, follow: true, googleBot: { index: true, follow: true, "max-video-preview": -1, "max-image-preview": "large", "max-snippet": -1, }, }, twitter: { title: `${DATA.name}`, card: "summary_large_image", }, verification: { google: "ZNT7_sXtFdgqBLCPLavTHWcviZRk__BNvClY8I-sFjU", yandex: "", }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{children}