From d1d6fc035f1ff783b154b710dc1835dc0a7e4332 Mon Sep 17 00:00:00 2001 From: bender Date: Tue, 3 Mar 2026 15:30:39 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 3e24145..5cd990b 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,8 +1,11 @@ import type { Metadata } from "next"; -import "./styles/globals.css"; +import { Inter } from "next/font/google"; +import "@/styles/globals.css"; + +const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - 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."}; + title: "MetaAds Pro - Done-For-You Meta Ads Management", description: "Get done-for-you Meta ads management with dedicated team, unlimited revisions, and real-time lead delivery to your CRM. Scale your ecommerce or service business fast."}; export default function RootLayout({ children, @@ -11,7 +14,7 @@ export default function RootLayout({ }) { return ( - {children} + {children}