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} @@ -62,7 +62,7 @@ export default function LandingPage() { ]} avatarText="Trusted by 100+ agencies and brands" buttons={[ - { text: "Get 3 Free Ads", href: "#free-offer" }, + { text: "Claim Your 3 Free Ads Now", href: "#free-offer" }, { text: "See Our Work", href: "#features" } ]} buttonAnimation="slide-up" @@ -216,7 +216,7 @@ export default function LandingPage() { plans={[ { id: "starter", badge: "Starter", badgeIcon: Sparkles, - price: "$1,500", subtitle: "Per Month", buttons: [ + price: "$1,500", subtitle: "Per Month (Recurring)", buttons: [ { text: "Get Started", href: "#free-offer" } ], features: [ @@ -225,7 +225,7 @@ export default function LandingPage() { }, { id: "growth", badge: "Most Popular", badgeIcon: Zap, - price: "$5,000", subtitle: "Per Month", buttons: [ + price: "$5,000", subtitle: "Per Month (Recurring)", buttons: [ { text: "Get Started", href: "#free-offer" } ], features: [ @@ -261,7 +261,7 @@ export default function LandingPage() { background={{ variant: "downward-rays-static-grid" }} useInvertedBackground={true} inputPlaceholder="Enter your email address" - buttonText="Get 3 Free Ads" + buttonText="Claim Your 3 Free Ads Now" termsText="By claiming your free ads, you agree to our Terms and Conditions. We'll send you everything via email. No credit card required. No follow-up calls. No obligations." ariaLabel="Free ad offer signup" /> @@ -330,7 +330,7 @@ export default function LandingPage() {