From d79fff57f64275040265d2a061e2316dce98eb51 Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 01:41:17 +0000 Subject: [PATCH 1/2] Update src/app/layout.tsx --- src/app/layout.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 786e845..7e6174e 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -5,7 +5,8 @@ import "./globals.css"; const inter = Inter({ subsets: ["latin"] }); export const metadata: Metadata = { - 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."}; + 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, @@ -1384,4 +1385,4 @@ export default function RootLayout({ ); -} +} \ No newline at end of file -- 2.49.1 From 9abc6caa073a905b586ab85baa35499ba1b4d39d Mon Sep 17 00:00:00 2001 From: bender Date: Thu, 5 Mar 2026 01:41:17 +0000 Subject: [PATCH 2/2] Update src/app/page.tsx --- src/app/page.tsx | 77 ++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 72 insertions(+), 5 deletions(-) diff --git a/src/app/page.tsx b/src/app/page.tsx index d8001ea..fc52329 100644 --- a/src/app/page.tsx +++ b/src/app/page.tsx @@ -11,9 +11,12 @@ import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia"; -import { BarChart3, Briefcase, CreditCard, Mail, Package, Palette, Shield, ShoppingCart, TrendingUp, Users, Zap, Sparkles, Database, Crown, Play, Image, Layers, Clock, CheckCircle, HelpCircle, Calendar } from "lucide-react"; +import { BarChart3, Briefcase, CreditCard, Mail, Package, Palette, Shield, ShoppingCart, TrendingUp, Users, Zap, Sparkles, Database, Crown, Play, Image, Layers, Clock, CheckCircle, HelpCircle, Calendar, Toggle2 } from "lucide-react"; +import { useState } from "react"; export default function LandingPage() { + const [showComparison, setShowComparison] = useState(false); + return (
+
+
+ +
+ {showComparison && ( +
+

Feature Comparison

+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
FeatureStarterGrowthEnterprise
Projects/Month4UnlimitedUnlimited
Creatives/MonthIncluded30+Unlimited
Turnaround Time48 hours24 hours24 hours
Account Manager-
API Access--
24/7 Support--
+
+
+ )} +
@@ -410,4 +477,4 @@ export default function LandingPage() {
); -} +} \ No newline at end of file -- 2.49.1