Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b50e371e2e | |||
| f0fe011935 | |||
| b662c4b6d8 | |||
| 257009671b | |||
| 02580b981a |
@@ -1,43 +1,27 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Libre_Baskerville } from "next/font/google";
|
import { Geist, Geist_Mono } from "next/font/google";
|
||||||
import { Inter } from "next/font/google";
|
|
||||||
import "./globals.css";
|
import "./globals.css";
|
||||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
|
||||||
import Tag from "@/tag/Tag";
|
|
||||||
|
|
||||||
const libreBaskerville = Libre_Baskerville({
|
const geist = Geist({
|
||||||
variable: "--font-libre-baskerville", subsets: ["latin"],
|
variable: "--font-geist-sans", subsets: ["latin"],
|
||||||
weight: ["400", "700"],
|
|
||||||
});
|
});
|
||||||
|
|
||||||
const inter = Inter({
|
const geistMono = Geist_Mono({
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
variable: "--font-geist-mono", subsets: ["latin"],
|
||||||
});
|
});
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Premium Video Editing & Post-Production Services", description: "Professional video editor with 8+ years experience. Specialized in color grading, motion graphics, and cinematic post-production.", keywords: "video editing, post-production, color grading, motion graphics, video production, filmmaker, editor", openGraph: {
|
title: "Create Next App", description: "Generated by create next app"};
|
||||||
title: "Premium Video Editing & Post-Production Services", description: "Professional video editor with 8+ years experience. Specialized in color grading, motion graphics, and cinematic post-production.", type: "website", siteName: "Creative Studio"},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Premium Video Editing & Post-Production Services", description: "Professional video editor with 8+ years experience. Specialized in color grading, motion graphics, and cinematic post-production."},
|
|
||||||
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={`${geist.variable} ${geistMono.variable}`}>
|
||||||
<body
|
{children}
|
||||||
className={`${libreBaskerville.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
@@ -1406,7 +1390,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -55,7 +55,7 @@ export default function LandingPage() {
|
|||||||
tagAnimation="slide-up"
|
tagAnimation="slide-up"
|
||||||
buttons={[
|
buttons={[
|
||||||
{ text: "View Portfolio", href: "#portfolio" },
|
{ text: "View Portfolio", href: "#portfolio" },
|
||||||
{ text: "Get Started", href: "#contact" }
|
{ text: "Book a Consultation", href: "#contact" }
|
||||||
]}
|
]}
|
||||||
buttonAnimation="slide-up"
|
buttonAnimation="slide-up"
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/professional-cameraman-recording-poeple-watching-football-public-place-night_1268-18138.jpg"
|
imageSrc="http://img.b2bpic.net/free-photo/professional-cameraman-recording-poeple-watching-football-public-place-night_1268-18138.jpg"
|
||||||
|
|||||||
Reference in New Issue
Block a user