5 Commits

Author SHA1 Message Date
00654bda39 Merge version_2 into main
Merge version_2 into main
2026-03-08 07:46:02 +00:00
9af0cb4fd7 Update src/app/page.tsx 2026-03-08 07:45:58 +00:00
5e1e807ffb Update src/app/layout.tsx 2026-03-08 07:45:58 +00:00
98b0fdadfb Merge version_1 into main
Merge version_1 into main
2026-03-08 07:42:04 +00:00
50315f8dee Merge version_1 into main
Merge version_1 into main
2026-03-08 07:40:49 +00:00
2 changed files with 8 additions and 45 deletions

View File

@@ -1,56 +1,20 @@
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 { Lato } from "next/font/google"; import "@/styles/globals.css";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
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"],
});
const lato = Lato({
variable: "--font-lato", subsets: ["latin"],
weight: ["100", "300", "400", "700", "900"],
});
export const metadata: Metadata = { 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: { 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."};
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"],
},
};
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}>{children}
<body
className={`${halant.variable} ${inter.variable} ${lato.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1418,7 +1382,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -66,7 +66,7 @@ export default function LandingPage() {
tag="About My Craft" tag="About My Craft"
tagIcon={Film} tagIcon={Film}
tagAnimation="slide-up" 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} useInvertedBackground={false}
buttons={[ buttons={[
{ text: "Download My Portfolio", href: "#" }, { text: "Download My Portfolio", href: "#" },