diff --git a/src/app/layout.tsx b/src/app/layout.tsx
index e2d3901..3d3e5e1 100644
--- a/src/app/layout.tsx
+++ b/src/app/layout.tsx
@@ -1,55 +1,20 @@
import type { Metadata } from "next";
-import { Mulish } from "next/font/google";
import { Inter } from "next/font/google";
import "./globals.css";
-import { ServiceWrapper } from "@/components/ServiceWrapper";
-import Tag from "@/tag/Tag";
-const mulish = Mulish({
- variable: "--font-mulish", subsets: ["latin"],
-});
-
-const inter = Inter({
- variable: "--font-inter", subsets: ["latin"],
-});
+const inter = Inter({ subsets: ["latin"] });
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"),
- 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
- }
-};
+ 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."};
export default function RootLayout({
children,
-}: Readonly<{
+}: {
children: React.ReactNode;
-}>) {
+}) {
return (
-
-