From 1f5b1540f81fdafed65726b798834996dead539e Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 14:26:18 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 40 ++++++---------------------------------- 1 file changed, 6 insertions(+), 34 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 630add0..1274932 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,47 +1,20 @@ import type { Metadata } from "next"; -import { Public_Sans } from "next/font/google"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const publicSans = Public_Sans({ - variable: "--font-public-sans", subsets: ["latin"], -}); - -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "Short-Form Marketing Agency | Video Content & Strategy", description: "Professional short-form video content creation and marketing strategy for brands. Drive engagement across TikTok, Instagram Reels, YouTube Shorts.", keywords: "short-form video, marketing agency, content creation, TikTok, Instagram Reels, YouTube Shorts", openGraph: { - title: "Short-Form Marketing Agency", description: "Professional short-form video content creation and marketing strategy", siteName: "ShortForm", type: "website"}, - robots: { - index: true, - follow: true, - }, -}; + title: "ShortForm - Short-Form Video Marketing", description: "Professional short-form video content creation and marketing solutions"}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}