Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 00654bda39 | |||
| 9af0cb4fd7 | |||
| 5e1e807ffb | |||
| 98b0fdadfb | |||
| 50315f8dee |
@@ -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>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -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: "#" },
|
||||||
|
|||||||
Reference in New Issue
Block a user