5 Commits

Author SHA1 Message Date
bf7ba8851f Merge version_3 into main
Merge version_3 into main
2026-03-06 06:14:32 +00:00
299c91cf51 Update src/app/page.tsx 2026-03-06 06:14:28 +00:00
b6fb3e7dda Update src/app/layout.tsx 2026-03-06 06:14:27 +00:00
f3b99122e2 Merge version_2 into main
Merge version_2 into main
2026-03-06 06:12:38 +00:00
65ed508863 Merge version_2 into main
Merge version_2 into main
2026-03-06 06:11:58 +00:00
2 changed files with 12 additions and 43 deletions

View File

@@ -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 (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>
{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1416,7 +1386,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}
}

View File

@@ -206,4 +206,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}