From f0fe011935ac1869f22e6fc2d0616b1b55580cb4 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 14:36:15 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 41 ++++++++++++----------------------------- 1 file changed, 12 insertions(+), 29 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 454ec72..181dd57 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,44 +1,28 @@ import type { Metadata } from "next"; -import { Libre_Baskerville } from "next/font/google"; -import { Inter } from "next/font/google"; +import { Geist, Geist_Mono } 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 geist = Geist({ + variable: "--font-geist-sans", subsets: ["latin"], }); -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], +const geistMono = Geist_Mono({ + variable: "--font-geist-mono", subsets: ["latin"], }); export const metadata: Metadata = { - title: "Premium Video Editing & Post-Production Services", description: "Professional video editor with 8+ years experience. Specialized in color grading, motion graphics, and cinematic post-production.", keywords: "video editing, post-production, color grading, motion graphics, video production, filmmaker, editor", openGraph: { - title: "Premium Video Editing & Post-Production Services", description: "Professional video editor with 8+ years experience. Specialized in color grading, motion graphics, and cinematic post-production.", type: "website", siteName: "Creative Studio"}, - twitter: { - card: "summary_large_image", title: "Premium Video Editing & Post-Production Services", description: "Professional video editor with 8+ years experience. Specialized in color grading, motion graphics, and cinematic post-production."}, - robots: { - index: true, - follow: true, - }, -}; + title: "Create Next App", description: "Generated by create next app"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +