Merge version_2 into main #3

Merged
bender merged 2 commits from version_2 into main 2026-03-08 07:46:02 +00:00
2 changed files with 8 additions and 45 deletions

View File

@@ -1,56 +1,20 @@
import type { Metadata } from "next";
import { Halant } from "next/font/google";
import { Inter } from "next/font/google";
import { Lato } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
import "@/styles/globals.css";
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
const lato = Lato({
variable: "--font-lato", subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
const inter = Inter({ subsets: ["latin"] });
export const metadata: Metadata = {
title: "Professional Video Editor | Cinematic Visual Storytelling", description: "Award-winning video editor specializing in color grading, motion graphics, and premium video production. Transform your vision into compelling visual narratives.", keywords: "video editor, video editing, color grading, motion graphics, video production, cinematographer", robots: {
index: true,
follow: true,
},
openGraph: {
title: "Professional Video Editor | Cinematic Visual Storytelling", description: "Award-winning video editor specializing in color grading, motion graphics, and premium video production.", type: "website", siteName: "VideoEdit Pro", images: [
{
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeaLbdK1ZUYcQ1nUhqOxGeyasj/a-dynamic-video-editing-workspace-with-m-1772955518584-aa9b9037.png", alt: "Professional video editing workspace"},
],
},
twitter: {
card: "summary_large_image", title: "Professional Video Editor | Cinematic Visual Storytelling", description: "Transform your vision into compelling visual narratives. Specialized in color grading, motion graphics, and premium video production.", images: [
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3AeaLbdK1ZUYcQ1nUhqOxGeyasj/a-dynamic-video-editing-workspace-with-m-1772955518584-aa9b9037.png"],
},
};
title: "VideoEdit Pro | Professional Video Editing Services", description: "Transform your vision into compelling visual narratives with professional color grading, motion graphics, and premium video production."};
export default function RootLayout({
children,
}: Readonly<{
}: {
children: React.ReactNode;
}>) {
}) {
return (
<html lang="en" suppressHydrationWarning>
<ServiceWrapper>
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<html lang="en">
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `
@@ -1418,7 +1382,6 @@ export default function RootLayout({
}}
/>
</body>
</ServiceWrapper>
</html>
);
}

View File

@@ -66,7 +66,7 @@ export default function LandingPage() {
tag="About My Craft"
tagIcon={Film}
tagAnimation="slide-up"
title="With 8+ years of experience in video production and editing, I've helped brands tell their stories through stunning visual content. From corporate documentaries to viral social media campaigns, I combine technical expertise with creative vision to deliver results that resonate."
title="8+ years transforming raw footage into award-winning content. I combine technical expertise with creative vision to help brands tell their stories through stunning visuals. From corporate documentaries to viral social media campaigns, I deliver results that resonate."
useInvertedBackground={false}
buttons={[
{ text: "Download My Portfolio", href: "#" },