From b275c79a26cfeebc4bc55f9d48d28c0cca1ce764 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 14:54:46 +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 0c9effe..3e24145 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,46 +1,17 @@ import type { Metadata } from "next"; -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 halant = Halant({ - variable: "--font-halant", subsets: ["latin"], - weight: ["300", "400", "500", "600", "700"], -}); - -const inter = Inter({ - variable: "--font-inter", subsets: ["latin"], -}); +import "./styles/globals.css"; export const metadata: Metadata = { - title: "Done-For-You Meta Ads Management | Instant Lead Delivery", description: "Scale your business with done-for-you Meta ads management. Dedicated support, unlimited revisions, and real-time lead delivery to your CRM. Book your free strategy call today.", keywords: "Meta ads management, Facebook ads agency, lead generation service, done-for-you ads, ecommerce marketing, digital advertising, paid ads management", robots: { - index: true, - follow: true - }, - openGraph: { - title: "Done-For-You Meta Ads That Deliver Instant Leads", description: "Get a dedicated designer, ads manager, and unlimited revisions. Every lead flows straight to your CRM in real time.", siteName: "MetaAds Pro", type: "website" - }, - twitter: { - card: "summary_large_image", title: "Done-For-You Meta Ads Management", description: "Scale with dedicated support and real-time lead delivery. Book your free strategy call." - } -}; + title: "MetaAds Pro - Done-For-You Meta Ads Management", description: "Get a dedicated designer, ads manager, and unlimited revisions. Done-for-you Meta ads that deliver instant leads to your CRM."}; export default function RootLayout({ children, -}: Readonly<{ +}: { children: React.ReactNode; -}>) { +}) { return ( - - - - - {children} - + + {children}