From b6fb3e7ddaf44f03dd9d2232f14ab30339b285d0 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 06:14:27 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 53 ++++++++++------------------------------------ 1 file changed, 11 insertions(+), 42 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 87ce573..25e23c5 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,54 +1,24 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; +import "./styles/variables.css"; +import "./styles/base.css"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Professional Video Editor | YouTube Vlog & Lifestyle Content", description: "Expert video editor specializing in engaging YouTube vlogs and lifestyle content. Clean cuts, strong hooks, and smooth pacing that captivate audiences. VN Video Editor & CapCut certified.", keywords: "video editor, youtube editing, vlog editor, lifestyle content, video production, capcut, vn editor", metadataBase: new URL("https://videoedit.com"), - alternates: { - canonical: "https://videoedit.com" - }, - openGraph: { - title: "Professional Video Editor | YouTube Content Specialist", description: "Transform your creative vision into engaging video content with expert editing and storytelling.", url: "https://videoedit.com", siteName: "VideoEdit", type: "website", images: [ - { - url: "http://img.b2bpic.net/free-photo/man-works-home-high-quality-photo_72229-937.jpg", alt: "Professional video editing portfolio" - } - ] - }, - twitter: { - card: "summary_large_image", title: "Professional Video Editor for YouTube Creators", description: "Elevate your content with expert video editing and creative storytelling.", images: ["http://img.b2bpic.net/free-photo/man-works-home-high-quality-photo_72229-937.jpg"] - }, - robots: { - index: true, - follow: true - } -}; + title: "VideoEdit - Professional Video Editing", description: "Professional video editing services for YouTube creators and content makers"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + + {children} +