From 3249eead64880bd0d40fa10d9801129f3eff146e Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 01:32:24 +0000 Subject: [PATCH] Update src/app/layout.tsx --- src/app/layout.tsx | 11 +++++------ 1 file changed, 5 insertions(+), 6 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 9b141ee..786e845 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,10 +1,11 @@ import type { Metadata } from "next"; -import "./styles/variables.css"; +import { Inter } from "next/font/google"; import "./globals.css"; +const inter = Inter({ subsets: ["latin"] }); + export const metadata: Metadata = { - title: "Efficient Ads - Agency-Quality Ad Creatives in 48 Hours", description: "Get stunning video ads, static creatives, and full-funnel packs delivered in 48 hours. Perfect for agencies, brands, and creators." -}; + title: "Efficient Ads - Agency-Quality Ad Creatives in 48 Hours", description: "Get agency-quality ad creatives delivered in 48 hours at half the cost. Perfect for agencies, brands, and creators."}; export default function RootLayout({ children, @@ -13,9 +14,7 @@ export default function RootLayout({ }) { return ( - - {children} - + {children}