3 Commits

Author SHA1 Message Date
efc7da9c82 Update src/app/page.tsx 2026-03-03 22:25:09 +00:00
501ddd27d1 Update src/app/layout.tsx 2026-03-03 22:25:09 +00:00
1746e86dfc Merge version_1 into main
Merge version_1 into main
2026-03-03 21:53:12 +00:00
2 changed files with 11 additions and 46 deletions

View File

@@ -1,56 +1,22 @@
import type { Metadata } from "next"; import type { Metadata } from 'next';
import { Roboto } from "next/font/google"; import { Inter } from 'next/font/google';
import { Halant } from "next/font/google"; import './globals.css';
import { Inter } from "next/font/google";
import "./globals.css";
import { ServiceWrapper } from "@/components/ServiceWrapper";
import Tag from "@/tag/Tag";
const roboto = Roboto({ const inter = Inter({ subsets: ['latin'] });
variable: "--font-roboto", subsets: ["latin"],
weight: ["100", "300", "400", "500", "700", "900"],
});
const halant = Halant({
variable: "--font-halant", subsets: ["latin"],
weight: ["300", "400", "500", "600", "700"],
});
const inter = Inter({
variable: "--font-inter", subsets: ["latin"],
});
export const metadata: Metadata = { export const metadata: Metadata = {
title: "Professional Video Editing & Color Grading | Editing Studio", description: "Premium video editing, color grading, and audio design services for creators and brands. Transform your vision into compelling visual stories.", keywords: "video editing, color grading, post-production, filmmaker, creative services", openGraph: { title: 'Editing Studio',
title: "Editing Studio - Professional Video Editing Services", description: "Elevate your stories with premium video editing, color grading, and sound design.", url: "https://editingstudio.com", siteName: "Editing Studio", type: "website", images: [ description: 'Premium video editing and color grading services',
{
url: "http://img.b2bpic.net/free-photo/african-american-freelancer-editing-background-video-his-home-office_482257-116610.jpg", alt: "Professional video editing services"
}
]
},
twitter: {
card: "summary_large_image", title: "Professional Video Editing & Color Grading", description: "Transform your creative vision into compelling visual stories.", images: ["http://img.b2bpic.net/free-photo/african-american-freelancer-editing-background-video-his-home-office_482257-116610.jpg"]
},
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={inter.className}>{children}
<body
className={`${roboto.variable} ${halant.variable} ${inter.variable} antialiased`}
>
<Tag />
{children}
<script <script
dangerouslySetInnerHTML={{ dangerouslySetInnerHTML={{
__html: ` __html: `
@@ -1418,7 +1384,6 @@ export default function RootLayout({
}} }}
/> />
</body> </body>
</ServiceWrapper>
</html> </html>
); );
} }

View File

@@ -58,7 +58,7 @@ export default function LandingPage() {
]} ]}
avatarText="Trusted by 100+ creators" avatarText="Trusted by 100+ creators"
buttons={[ buttons={[
{ text: "View Our Work", href: "#work" }, { text: "Explore Our Portfolio", href: "#work" },
{ text: "Start a Project", href: "#contact" } { text: "Start a Project", href: "#contact" }
]} ]}
background={{ variant: "plain" }} background={{ variant: "plain" }}