From 540804a18a3b348deba5dfd52bd9576a19b4c3e7 Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 4 Mar 2026 18:18:55 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 0d9d297..5291fa8 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,24 +1,13 @@ import type { Metadata } from "next"; -import { Halant } from "next/font/google"; import { Inter } from "next/font/google"; -import { Raleway } 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 raleway = Raleway({ - variable: "--font-raleway", subsets: ["latin"], -}); - export const metadata: Metadata = { title: "Mediame - Social Media Marketing Agency", description: "Transform your brand's social presence with strategic campaigns, creative content, and data-driven results. Trusted by leading brands.", keywords: "social media marketing, social media agency, digital marketing, content creation, social media strategy, paid advertising", robots: { index: true, @@ -43,9 +32,7 @@ export default function RootLayout({ return ( - + {children}