Merge version_1 into main #1
@@ -80,7 +80,7 @@ export default function AboutPage() {
|
||||
tag="Our Story"
|
||||
tagIcon={Zap}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/diverse-freelancers-editing-film-footage-computer-using-movie-making-software-with-visual-sound-effects-working-post-production-montage-make-creative-content-app_482257-49850.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/diverse-freelancers-editing-film-footage-computer-using-movie-making-software-with-visual-sound-effects-working-post-production-montage-make-creative-content-app_482257-49850.jpg?_wi=2"
|
||||
imageAlt="Elite Edit Lab team at work"
|
||||
mediaAnimation="slide-up"
|
||||
metrics={[
|
||||
@@ -119,7 +119,7 @@ export default function AboutPage() {
|
||||
description:
|
||||
"We refuse mediocrity. Every pixel, every transition, every color grade is crafted to perfection. Quality is non-negotiable.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/abstract-neon-background_23-2150737847.jpg",
|
||||
"http://img.b2bpic.net/free-photo/abstract-neon-background_23-2150737847.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
@@ -127,7 +127,7 @@ export default function AboutPage() {
|
||||
description:
|
||||
"Your vision is our mission. We work closely with you to understand your goals, brand, and audience. We're partners, not just vendors.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-vector/time-management-concept-landing-page_52683-11719.jpg",
|
||||
"http://img.b2bpic.net/free-vector/time-management-concept-landing-page_52683-11719.jpg?_wi=6",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
@@ -135,7 +135,7 @@ export default function AboutPage() {
|
||||
description:
|
||||
"The creative industry evolves constantly. We stay ahead of trends, embrace new technologies, and push creative boundaries daily.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/abstract-neon-background_23-2150737847.jpg",
|
||||
"http://img.b2bpic.net/free-photo/abstract-neon-background_23-2150737847.jpg?_wi=4",
|
||||
},
|
||||
]}
|
||||
ariaLabel="Elite Edit Lab core values"
|
||||
|
||||
@@ -142,7 +142,7 @@ export default function ContactPage() {
|
||||
"All tiers include standard support. Elite clients receive priority support with direct phone and Slack access, plus monthly strategy calls.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-vector/time-management-concept-landing-page_52683-11719.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/time-management-concept-landing-page_52683-11719.jpg?_wi=7"
|
||||
imageAlt="Contact and support information"
|
||||
mediaPosition="right"
|
||||
ariaLabel="Contact support FAQ"
|
||||
|
||||
@@ -1,28 +1,54 @@
|
||||
import type { Metadata } from "next";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
import { getVisualEditScript } from "@/utils/visual-edit-script";
|
||||
import { Public_Sans } from "next/font/google";
|
||||
|
||||
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Webild components 2",
|
||||
description: "Generated by create next app",
|
||||
};
|
||||
|
||||
const publicSans = Public_Sans({
|
||||
variable: "--font-public-sans",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter",
|
||||
subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Elite Edit Lab – Premium Video Editing & Design",
|
||||
description: "Professional video editing, color grading, and social media design for high-ticket creators. Cyberpunk minimalism meets elite execution.",
|
||||
keywords: "video editing, color grading, YouTube thumbnails, social media design, content creation, motion graphics",
|
||||
metadataBase: new URL("https://eliteeditlab.com"),
|
||||
alternates: {
|
||||
canonical: "https://eliteeditlab.com",
|
||||
},
|
||||
openGraph: {
|
||||
title: "Elite Edit Lab – Premium Video Editing & Design",
|
||||
description: "Transform your content with elite-level video editing and design. Premium quality. Fast turnaround. Results that convert.",
|
||||
url: "https://eliteeditlab.com",
|
||||
siteName: "Elite Edit Lab",
|
||||
type: "website",
|
||||
images: [
|
||||
{
|
||||
url: "https://eliteeditlab.com/og-image.jpg",
|
||||
alt: "Elite Edit Lab – Premium Video Editing",
|
||||
},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image",
|
||||
title: "Elite Edit Lab – Premium Video Editing & Design",
|
||||
description: "Cinematic content. Elite execution. Premium video editing for creators.",
|
||||
images: ["https://eliteeditlab.com/twitter-image.jpg"],
|
||||
},
|
||||
robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: Readonly<{
|
||||
@@ -31,7 +57,9 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body className={`${publicSans.variable} ${inter.variable} antialiased`}>
|
||||
<body
|
||||
className={`${publicSans.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
<script
|
||||
@@ -43,4 +71,4 @@ export default function RootLayout({
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -124,7 +124,7 @@ export default function HomePage() {
|
||||
tag="Our Expertise"
|
||||
tagIcon={Zap}
|
||||
tagAnimation="slide-up"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-neon-background_23-2150737847.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-photo/abstract-neon-background_23-2150737847.jpg?_wi=1"
|
||||
imageAlt="3D motion graphics showcase"
|
||||
mediaAnimation="slide-up"
|
||||
metrics={[
|
||||
@@ -200,7 +200,7 @@ export default function HomePage() {
|
||||
rating: 5,
|
||||
reviewCount: "45",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/abstract-neon-background_23-2150737847.jpg",
|
||||
"http://img.b2bpic.net/free-photo/abstract-neon-background_23-2150737847.jpg?_wi=2",
|
||||
imageAlt: "video motion graphics animation",
|
||||
},
|
||||
{
|
||||
@@ -211,7 +211,7 @@ export default function HomePage() {
|
||||
rating: 5,
|
||||
reviewCount: "51",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-photo/diverse-freelancers-editing-film-footage-computer-using-movie-making-software-with-visual-sound-effects-working-post-production-montage-make-creative-content-app_482257-49850.jpg",
|
||||
"http://img.b2bpic.net/free-photo/diverse-freelancers-editing-film-footage-computer-using-movie-making-software-with-visual-sound-effects-working-post-production-montage-make-creative-content-app_482257-49850.jpg?_wi=1",
|
||||
imageAlt: "professional video editing workflow",
|
||||
},
|
||||
{
|
||||
@@ -334,7 +334,7 @@ export default function HomePage() {
|
||||
description:
|
||||
"You share your vision, goals, and brand guidelines. We dig deep to understand your audience and creative objectives.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-vector/time-management-concept-landing-page_52683-11719.jpg",
|
||||
"http://img.b2bpic.net/free-vector/time-management-concept-landing-page_52683-11719.jpg?_wi=1",
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
@@ -342,7 +342,7 @@ export default function HomePage() {
|
||||
description:
|
||||
"Our team crafts your content with precision. Advanced editing, color grading, motion graphics—we bring it all together seamlessly.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-vector/time-management-concept-landing-page_52683-11719.jpg",
|
||||
"http://img.b2bpic.net/free-vector/time-management-concept-landing-page_52683-11719.jpg?_wi=2",
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
@@ -350,7 +350,7 @@ export default function HomePage() {
|
||||
description:
|
||||
"Your feedback shapes the final product. We iterate until it's absolutely perfect, ensuring every frame aligns with your vision.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-vector/time-management-concept-landing-page_52683-11719.jpg",
|
||||
"http://img.b2bpic.net/free-vector/time-management-concept-landing-page_52683-11719.jpg?_wi=3",
|
||||
},
|
||||
{
|
||||
id: 4,
|
||||
@@ -358,7 +358,7 @@ export default function HomePage() {
|
||||
description:
|
||||
"We deliver in your preferred format and resolution. Ongoing support ensures seamless implementation and future success.",
|
||||
imageSrc:
|
||||
"http://img.b2bpic.net/free-vector/time-management-concept-landing-page_52683-11719.jpg",
|
||||
"http://img.b2bpic.net/free-vector/time-management-concept-landing-page_52683-11719.jpg?_wi=4",
|
||||
},
|
||||
]}
|
||||
ariaLabel="Elite Edit Lab process and workflow"
|
||||
@@ -465,7 +465,7 @@ export default function HomePage() {
|
||||
"Elite clients get monthly 1-on-1 strategy calls to discuss content performance, editing trends, audience insights, and optimization strategies for maximum impact.",
|
||||
},
|
||||
]}
|
||||
imageSrc="http://img.b2bpic.net/free-vector/time-management-concept-landing-page_52683-11719.jpg"
|
||||
imageSrc="http://img.b2bpic.net/free-vector/time-management-concept-landing-page_52683-11719.jpg?_wi=5"
|
||||
imageAlt="FAQ visual reference"
|
||||
mediaPosition="right"
|
||||
ariaLabel="Frequently asked questions about Elite Edit Lab"
|
||||
|
||||
Reference in New Issue
Block a user