Compare commits
4 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 3466ed5a96 | |||
| e9ec73450e | |||
| 5d83ee0751 | |||
| 3a724bdf84 |
@@ -1,50 +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 { Nunito_Sans } from "next/font/google";
|
|
||||||
import "./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 nunitoSans = Nunito_Sans({
|
|
||||||
variable: "--font-nunito-sans", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Professional Video Editing Portfolio | Creative Storytelling", description: "Award-winning video editor specializing in commercials, documentaries, and music videos. 500+ projects completed with professional editing and post-production services.", keywords: "video editing, post-production, commercial editing, documentary, music video, color grading, motion graphics", openGraph: {
|
title: "Create Next App", description: "Generated by create next app"};
|
||||||
title: "Professional Video Editing Portfolio", description: "Cinematic video editing and post-production services for commercials, documentaries, and creative projects.", siteName: "Studio", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "http://img.b2bpic.net/free-photo/slide-view-streaming-home-studio-equipped-with-professional-equipment-esport-competition_482257-551.jpg", alt: "Professional video editing studio"},
|
|
||||||
],
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Professional Video Editing Portfolio", description: "Cinematic video editing and post-production services", images: ["http://img.b2bpic.net/free-photo/slide-view-streaming-home-studio-equipped-with-professional-equipment-esport-competition_482257-551.jpg"],
|
|
||||||
},
|
|
||||||
};
|
|
||||||
|
|
||||||
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} ${nunitoSans.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1412,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -162,7 +162,7 @@ export default function LandingPage() {
|
|||||||
title="Ready to Start Your Project?"
|
title="Ready to Start Your Project?"
|
||||||
description="Have a project in mind? I'd love to discuss how I can bring your vision to life with professional editing and creative direction. Let's create something amazing together."
|
description="Have a project in mind? I'd love to discuss how I can bring your vision to life with professional editing and creative direction. Let's create something amazing together."
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "Contact Me", href: "mailto:hello@videostudio.com" },
|
{ text: "Start a Project", href: "mailto:hello@videostudio.com" },
|
||||||
{ text: "View More Work", href: "#work" }
|
{ text: "View More Work", href: "#work" }
|
||||||
]}
|
]}
|
||||||
background={{ variant: "plain" }}
|
background={{ variant: "plain" }}
|
||||||
|
|||||||
Reference in New Issue
Block a user