Merge version_2 into main
Merge version_2 into main
This commit was merged in pull request #4.
This commit is contained in:
@@ -1,55 +1,20 @@
|
|||||||
import type { Metadata } from "next";
|
import type { Metadata } from "next";
|
||||||
import { Mulish } from "next/font/google";
|
|
||||||
import { Inter } 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 mulish = Mulish({
|
const inter = Inter({ subsets: ["latin"] });
|
||||||
variable: "--font-mulish", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
const inter = Inter({
|
|
||||||
variable: "--font-inter", subsets: ["latin"],
|
|
||||||
});
|
|
||||||
|
|
||||||
export const metadata: Metadata = {
|
export const metadata: Metadata = {
|
||||||
title: "Framelab - Short-Form Video Production Agency", description: "Award-winning creative agency specializing in viral short-form video content for TikTok, Instagram Reels, and YouTube Shorts. Boost your brand with compelling visual storytelling.", keywords: "short-form video, video production, content creation, TikTok agency, viral content, social media videos, creative agency", metadataBase: new URL("https://framelab.com"),
|
title: "Framelab - Short-Form Videos That Drive Sales", description: "Professional short-form video production that converts viewers into customers. Transform your brand with viral content strategy."};
|
||||||
alternates: {
|
|
||||||
canonical: "https://framelab.com"
|
|
||||||
},
|
|
||||||
openGraph: {
|
|
||||||
title: "Framelab - Short-Form Video Production", description: "Create viral content that converts with Framelab's expert short-form video production services.", url: "https://framelab.com", siteName: "Framelab", type: "website", images: [
|
|
||||||
{
|
|
||||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APEgSG1qjCTn6RVTseWb4QYyMi/a-sleek-modern-video-production-studio-w-1772556147480-6c57d208.png", alt: "Framelab - Video Production Agency"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
twitter: {
|
|
||||||
card: "summary_large_image", title: "Framelab - Short-Form Video Production", description: "Viral content starts here. Professional short-form video production for brands.", images: [
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3APEgSG1qjCTn6RVTseWb4QYyMi/a-sleek-modern-video-production-studio-w-1772556147480-6c57d208.png"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
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={`${mulish.variable} ${inter.variable} antialiased`}
|
|
||||||
>
|
|
||||||
<Tag />
|
|
||||||
{children}
|
|
||||||
|
|
||||||
<script
|
<script
|
||||||
dangerouslySetInnerHTML={{
|
dangerouslySetInnerHTML={{
|
||||||
__html: `
|
__html: `
|
||||||
@@ -1417,7 +1382,6 @@ export default function RootLayout({
|
|||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
</body>
|
</body>
|
||||||
</ServiceWrapper>
|
|
||||||
</html>
|
</html>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -39,7 +39,7 @@ export default function LandingPage() {
|
|||||||
|
|
||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroBillboardGallery
|
<HeroBillboardGallery
|
||||||
title="Viral Content Starts Here"
|
title="Short-Form Videos That Drive Sales"
|
||||||
description="We craft compelling short-form video content that captures attention, drives engagement, and converts viewers into customers. From concept to final edit, we handle every frame."
|
description="We craft compelling short-form video content that captures attention, drives engagement, and converts viewers into customers. From concept to final edit, we handle every frame."
|
||||||
tag="Creative Agency"
|
tag="Creative Agency"
|
||||||
tagIcon={Zap}
|
tagIcon={Zap}
|
||||||
|
|||||||
Reference in New Issue
Block a user