From 79d0e0636196909e7cd4d057469d5ffc68ceb39b Mon Sep 17 00:00:00 2001 From: bender Date: Sat, 7 Mar 2026 09:34:08 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 42 ++++++------------------------------------ 1 file changed, 6 insertions(+), 36 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 7ccd355..5c7a7fe 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,49 +1,20 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Mulish } from "next/font/google"; import "./globals.css"; -import { ServiceWrapper } from "@/components/ServiceWrapper"; -import Tag from "@/tag/Tag"; -const halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); - -const mulish = Mulish({ - variable: "--font-mulish", subsets: ["latin"], -}); +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - title: "MOSI.MEDIA - Premium Media Production & Creative Agency", description: "Full-service media agency specializing in video production, content strategy, and brand design. We create compelling visual stories that drive results.", keywords: "media agency, video production, content strategy, brand design, creative services", openGraph: { - title: "MOSI.MEDIA - Creative Media Solutions", description: "Transform your brand with cutting-edge media production and strategic content creation.", type: "website", siteName: "MOSI.MEDIA"}, - twitter: { - card: "summary_large_image", title: "MOSI.MEDIA - Premium Media Production", description: "Full-service creative media agency"}, - robots: { - index: true, - follow: true, - }, -}; + title: "MOSI.MEDIA - Creative Media Production & Strategy", description: "Professional media production, content strategy, and brand design services. We create powerful visual stories that connect brands with audiences."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}