Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 299c91cf51 | |||
| b6fb3e7dda | |||
| f3b99122e2 | |||
| 65ed508863 |
@@ -1,53 +1,23 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Halant } from "next/font/google";
|
|
||||||
import { Inter } from "next/font/google";
|
import { Inter } from "next/font/google";
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
import "./styles/variables.css";
|
||||||
import Tag from "@/tag/Tag";
|
import "./styles/base.css";
|
||||||
|
|
||||||
const halant = Halant({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-halant", subsets: ["latin"],
|
|
||||||
weight: ["300", "400", "500", "600", "700"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
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"),
|
title: "VideoEdit - Professional Video Editing", description: "Professional video editing services for YouTube creators and content makers"};
|
||||||
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
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
export default function RootLayout({
|
export default function RootLayout({
|
||||||
children,
|
children,
|
||||||
}: Readonly<{
|
}: {
|
||||||
children: React.ReactNode;
|
children: React.ReactNode;
|
||||||
}>) {
|
}) {
|
||||||
return (
|
return (
|
||||||
<html lang="en" suppressHydrationWarning>
|
<html lang="en">
|
||||||
<ServiceWrapper>
|
<body className={inter.className}>
|
||||||
<body
|
{children}
|
||||||
className={`${halant.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1416,7 +1386,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user