From 1ba0b76fa119d1aa2e43c787d88c18dc3b989fe6 Mon Sep 17 00:00:00 2001 From: bender Date: Mon, 8 Jun 2026 07:04:31 +0000 Subject: [PATCH 1/4] Update src/app/layout.tsx --- src/app/layout.tsx | 25 +++++++++++-------------- 1 file changed, 11 insertions(+), 14 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index eaa5ffe..f659227 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -6,23 +6,22 @@ import "@/lib/gsap-setup"; import { ServiceWrapper } from "@/components/ServiceWrapper"; import Tag from "@/tag/Tag"; import { getVisualEditScript } from "@/utils/visual-edit-script"; +import { DM_Sans } from "next/font/google"; -const halant = Halant({ - variable: "--font-halant", - subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); -const inter = Inter({ - variable: "--font-inter", - subsets: ["latin"], -}); export const metadata: Metadata = { - title: 'Animated Fashion Ads | Dynamic Clothing Brand Marketing', - description: 'Captivate your audience with stunning animated advertisements for any clothing brand. Elevate your fashion marketing and boost engagement.', + title: 'Digital Marketing Agency | Grow Your Business Online', + description: 'Unlock your online potential with expert digital marketing services. From SEO to social media, we drive results and accelerate growth.', }; +const dmSans = DM_Sans({ + variable: "--font-dm-sans", subsets: ["latin"], +}); +const inter = Inter({ + variable: "--font-inter", subsets: ["latin"], +}); + export default function RootLayout({ children, }: Readonly<{ @@ -31,9 +30,7 @@ export default function RootLayout({ return ( - + {children}