diff --git a/src/app/layout.tsx b/src/app/layout.tsx index a47d198..ca69344 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,9 +1,11 @@ import type { Metadata } from "next"; +import { Inter } from "next/font/google"; import "./globals.css"; +const inter = Inter({ subsets: ["latin"] }); + export const metadata: Metadata = { - title: "Efficient Ads - 40% Average ROAS Increase—Get Professional Ad Creatives in 48 Hours, 50% Cheaper Than Agencies", description: "Launch winning campaigns in 48 hours instead of 3 weeks. Agency-quality video ads, static creatives, and full-funnel packs. 40% average ROAS increase. 50% cheaper than agencies." -}; + title: "Efficient Ads - Professional Ad Creatives in 48 Hours", description: "Get agency-quality ad creatives delivered in 48 hours. 40% ROAS increase, 50% cheaper than traditional agencies."}; export default function RootLayout({ children, @@ -12,9 +14,7 @@ export default function RootLayout({ }) { return ( -
- {children} - + {children}