import Footer from "@/components/home/footer"; import type { Metadata } from "next"; import "./styles/globals.css"; import Navbar from "@/components/home/navbar"; import { Toaster } from "@/components/ui/sonner"; import { aeonik, cn, inter } from "@/utils"; import { ORIGIN_URL } from "@/utils/constants/pricing"; import { ClerkProvider } from "@clerk/nextjs"; export const metadata: Metadata = { title: "Summry AI", description: "Convert your video or audio into a Blog Post in seconds with the power of AI!", icons: { icon: "/icon.ico", }, metadataBase: new URL(ORIGIN_URL), alternates: { canonical: ORIGIN_URL, }, openGraph: { title: "Summry AI", description: "Convert your video or audio into a Blog Post in seconds with the power of AI!", url: "https://Summry.xyz", images: [ { url: "/Summry.png", width: 1260, height: 800, }, ], locale: "en-EN", }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{children}