diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 170c284..7ca1e72 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,42 +1,21 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } from "next/font/google"; -import { Inter } from "next/font/google"; -import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; - -const libreBaskerville = Libre_Baskerville({ - variable: "--font-libre-baskerville", subsets: ["latin"], - weight: ["400", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +import { GeistSans } from "geist/font/sans"; +import { GeistMono } from "geist/font/mono"; +import "@/styles/globals.css"; export const metadata: Metadata = { - title: "LaughClips - Funny Short Videos & Comedy Content", description: "Watch hilarious short videos including school jokes, epic fails, and viral memes. Share laughs with millions on the funniest video platform online.", keywords: "funny videos, short clips, memes, fails, comedy, viral content, laugh", openGraph: { - title: "LaughClips - Funny Short Videos & Comedy Content", description: "Watch hilarious short videos including school jokes, epic fails, and viral memes.", url: "https://laughclips.com", siteName: "LaughClips", type: "website"}, - robots: { - index: true, - follow: true, - }, -}; + title: "LaughClips - Funniest Videos Online", description: "Discover hilarious short clips that'll make you laugh out loud. From school jokes to epic fails to trending memes."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +