13 Commits

Author SHA1 Message Date
ed40fec024 Add src/app/thank-you/page.tsx 2026-03-05 06:39:55 +00:00
34db2ddbf0 Update src/app/page.tsx 2026-03-05 06:39:54 +00:00
c08bfd11f8 Update src/app/layout.tsx 2026-03-05 06:39:54 +00:00
681266e374 Merge version_14 into main
Merge version_14 into main
2026-03-05 05:15:06 +00:00
df52fd53a5 Update src/app/page.tsx 2026-03-05 05:15:01 +00:00
7967ae572b Merge version_14 into main
Merge version_14 into main
2026-03-05 05:13:34 +00:00
b4deea5982 Update src/app/page.tsx 2026-03-05 05:13:30 +00:00
e489f74440 Merge version_13 into main
Merge version_13 into main
2026-03-05 05:10:36 +00:00
9a89f7be97 Update src/app/page.tsx 2026-03-05 05:10:32 +00:00
5548158ae2 Merge version_12 into main
Merge version_12 into main
2026-03-05 05:07:09 +00:00
6f11ebac09 Update src/app/page.tsx 2026-03-05 05:07:05 +00:00
45e956d16a Update src/app/layout.tsx 2026-03-05 05:07:05 +00:00
ff8938ec0f Merge version_11 into main
Merge version_11 into main
2026-03-05 05:04:11 +00:00
3 changed files with 322 additions and 49 deletions

View File

@@ -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 - Get Professional Ad Creatives in 48 Hours—50% Cheaper Than Agencies", description: "Get Professional Ad Creatives in 48 Hours—50% Cheaper Than Agencies. 40% Average ROAS Increase. 3 Weeks Production Time Cut to 48 Hours. Perfect for agencies, brands, and creators."
};
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 (
<html lang="en">
<body>
{children}
<body className={inter.className}>{children}
<script
dangerouslySetInnerHTML={{
__html: `

View File

@@ -11,11 +11,31 @@ 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, ArrowRight } from "lucide-react";
import { useState } from "react";
import Input from "@/components/form/Input";
import { BarChart3, Briefcase, CreditCard, Mail, Package, Palette, Shield, ShoppingCart, TrendingUp, Users, Zap, Sparkles, Database, Crown, Play, Image, Layers, Clock, CheckCircle, HelpCircle, Calendar, ArrowRight, MessageCircle } from "lucide-react";
import { useState, useEffect } from "react";
import Link from "next/link";
export default function LandingPage() {
const [showComparison, setShowComparison] = useState(false);
const [urlInput, setUrlInput] = useState("");
const [isScrolled, setIsScrolled] = useState(false);
const [showMobileCTA, setShowMobileCTA] = useState(false);
useEffect(() => {
const handleScroll = () => {
setIsScrolled(window.scrollY > 100);
setShowMobileCTA(window.scrollY > 500);
};
window.addEventListener("scroll", handleScroll);
return () => window.removeEventListener("scroll", handleScroll);
}, []);
const handleUrlSubmit = () => {
if (urlInput.trim()) {
window.location.href = `/thank-you?url=${encodeURIComponent(urlInput)}`;
}
};
return (
<ThemeProvider
@@ -31,26 +51,55 @@ export default function LandingPage() {
headingFontWeight="medium"
>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingInline
brandName="Efficient Ads"
navItems={[
{ name: "How it Works", id: "how-it-works" },
{ name: "Pricing", id: "pricing" },
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }
]}
button={{
text: "Claim Your 3 Free Ads Now", href: "#free-offer"
}}
animateOnLoad={true}
/>
<div className={`fixed top-0 left-0 right-0 z-50 transition-all duration-300 ${
isScrolled ? 'bg-background/95 backdrop-blur-md shadow-lg' : 'bg-transparent'
}`}>
<NavbarLayoutFloatingInline
brandName="Efficient Ads"
navItems={[
{ name: "How it Works", id: "how-it-works" },
{ name: "Pricing", id: "pricing" },
{ name: "Testimonials", id: "testimonials" },
{ name: "FAQ", id: "faq" },
{ name: "Contact", id: "contact" }
]}
button={{
text: "Get 3 Free Ads Now", href: "#free-offer"
}}
animateOnLoad={true}
/>
</div>
</div>
{/* Floating WhatsApp Chat Button */}
<div className="fixed bottom-6 right-6 z-40">
<a
href="https://wa.me/1234567890"
target="_blank"
rel="noopener noreferrer"
className="flex items-center justify-center w-14 h-14 rounded-full bg-primary-cta text-primary-cta-text hover:scale-110 transition-transform shadow-lg"
aria-label="Chat on WhatsApp"
>
<MessageCircle size={24} />
</a>
</div>
{/* Mobile-only CTA Bar */}
{showMobileCTA && (
<div className="fixed bottom-0 left-0 right-0 z-40 md:hidden bg-primary-cta text-primary-cta-text p-4 shadow-lg">
<button
onClick={() => document.getElementById('free-offer')?.scrollIntoView({ behavior: 'smooth' })}
className="w-full py-3 px-4 bg-white text-primary-cta font-semibold rounded-full hover:opacity-90 transition-opacity"
>
Get 3 Free Ads
</button>
</div>
)}
<div id="hero" data-section="hero">
<HeroCentered
title="Get Professional Ad Creatives in 48 Hours—50% Cheaper Than Agencies."
description="40% Average ROAS Increase. 3 Weeks Production Time Cut to 48 Hours. Launch winning campaigns faster with agency-quality video ads, static creatives, and full-funnel packs. Perfect for agencies, brands, and creators who refuse to compromise on quality."
title="40% ROAS Increase in 48 Hours"
description="Professional ad creatives delivered in 48 hours instead of 3 weeks. Agency-quality video ads and static creatives, 50% cheaper than traditional agencies."
background={{ variant: "downward-rays-animated" }}
avatars={[
{
@@ -65,7 +114,7 @@ export default function LandingPage() {
]}
avatarText="Trusted by 100+ agencies and brands"
buttons={[
{ text: "Claim Your 3 Free Ads Now", href: "#free-offer" },
{ text: "Get 3 Free Ads Now", href: "#free-offer" },
{ text: "See Our Work", href: "#features" }
]}
buttonAnimation="slide-up"
@@ -73,6 +122,54 @@ export default function LandingPage() {
/>
</div>
{/* Metrics Strip Section */}
<div id="metrics" data-section="metrics" className="py-12 md:py-16 bg-card border-y border-accent/10">
<div className="max-w-6xl mx-auto px-4">
<div className="grid grid-cols-1 md:grid-cols-4 gap-6 md:gap-8">
<div className="text-center">
<div className="text-3xl md:text-4xl font-bold text-primary-cta mb-2">$2.3M+</div>
<p className="text-foreground/70 text-sm md:text-base">Ad Spend Managed</p>
</div>
<div className="text-center">
<div className="text-3xl md:text-4xl font-bold text-primary-cta mb-2">34%</div>
<p className="text-foreground/70 text-sm md:text-base">Avg CPC Reduction</p>
</div>
<div className="text-center">
<div className="text-3xl md:text-4xl font-bold text-primary-cta mb-2">48hr</div>
<p className="text-foreground/70 text-sm md:text-base">Delivery Time</p>
</div>
<div className="text-center">
<div className="text-3xl md:text-4xl font-bold text-primary-cta mb-2">200+</div>
<p className="text-foreground/70 text-sm md:text-base">Creatives Delivered</p>
</div>
</div>
</div>
</div>
{/* Platform Logo Strip */}
<div id="platforms" data-section="platforms" className="py-8 md:py-12 bg-background">
<div className="max-w-6xl mx-auto px-4">
<p className="text-center text-foreground/60 text-sm md:text-base mb-6 md:mb-8">We create ads optimized for all major platforms</p>
<div className="flex flex-wrap justify-center items-center gap-6 md:gap-10">
<div className="flex items-center gap-2 text-foreground/70 font-semibold">
<span className="text-lg">f</span> Meta
</div>
<div className="flex items-center gap-2 text-foreground/70 font-semibold">
<span className="text-lg"></span> TikTok
</div>
<div className="flex items-center gap-2 text-foreground/70 font-semibold">
<span className="text-lg"></span> YouTube
</div>
<div className="flex items-center gap-2 text-foreground/70 font-semibold">
<span className="text-lg">G</span> Google
</div>
<div className="flex items-center gap-2 text-foreground/70 font-semibold">
<span className="text-lg"></span> Display
</div>
</div>
</div>
</div>
<div id="social-proof" data-section="social-proof">
<SocialProofOne
title="Proven Results for Growing Brands"
@@ -208,6 +305,66 @@ export default function LandingPage() {
]}
buttonAnimation="opacity"
/>
{/* Video Explainer Section */}
<div className="mt-12 md:mt-16 px-4">
<div className="max-w-4xl mx-auto">
<div className="aspect-video bg-card rounded-lg border border-accent/20 flex items-center justify-center overflow-hidden">
<iframe
width="100%"
height="100%"
src="https://www.youtube.com/embed/dQw4w9WgXcQ"
title="Efficient Ads Demo"
frameBorder="0"
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture"
allowFullScreen
/>
</div>
<p className="text-center text-foreground/60 text-sm mt-4">60-90 second video explainer - See how our process works</p>
</div>
</div>
</div>
<div id="free-offer" data-section="free-offer">
<div className="relative py-16 md:py-20 px-4 bg-gradient-to-br from-primary-cta/5 to-accent/5">
<div className="max-w-2xl mx-auto">
<div className="text-center mb-8">
<h2 className="text-3xl md:text-4xl font-bold text-foreground mb-3">Claim Your 3 Free Ads Now</h2>
<p className="text-foreground/70 mb-6">Try our service risk-free. No credit card required upfront. Get agency-quality ad creatives delivered in 48 hours.</p>
</div>
<div className="space-y-4">
<div>
<label className="block text-sm font-medium text-foreground mb-2">Paste your website URL</label>
<div className="flex gap-2">
<Input
value={urlInput}
onChange={setUrlInput}
type="url"
placeholder="e.g. yourbrand.com"
required
/>
<button
onClick={handleUrlSubmit}
className="px-6 py-3 bg-primary-cta text-primary-cta-text font-semibold rounded-full hover:opacity-90 transition-opacity whitespace-nowrap"
>
Submit
</button>
</div>
</div>
<button
onClick={handleUrlSubmit}
className="w-full py-4 px-6 bg-primary-cta text-primary-cta-text font-semibold rounded-full hover:opacity-90 transition-opacity text-lg"
>
Get 3 Free Ads (No Credit Card)
</button>
</div>
<p className="text-center text-foreground/60 text-xs md:text-sm mt-4">
No credit card required. 30-day money-back guarantee on paid plans.
</p>
</div>
</div>
</div>
<div id="pricing" data-section="pricing">
@@ -216,10 +373,10 @@ export default function LandingPage() {
<button
onClick={() => setShowComparison(!showComparison)}
className="inline-flex items-center gap-2 px-6 py-3 rounded-full bg-primary-cta text-primary-cta-text hover:opacity-80 transition-opacity font-semibold"
aria-label="Claim your 3 free ads"
aria-label="View plan comparison"
>
<CheckCircle size={20} />
<span>Claim Your 3 Free Ads Now</span>
<span>View Plan Comparison</span>
</button>
</div>
{showComparison && (
@@ -236,6 +393,12 @@ export default function LandingPage() {
</tr>
</thead>
<tbody>
<tr className="border-b border-accent/10">
<td className="py-3 px-3">Average ROAS Lift</td>
<td className="text-center py-3 px-3">20%</td>
<td className="text-center py-3 px-3">40%</td>
<td className="text-center py-3 px-3">Custom</td>
</tr>
<tr className="border-b border-accent/10">
<td className="py-3 px-3">Projects/Month</td>
<td className="text-center py-3 px-3">4</td>
@@ -285,25 +448,25 @@ export default function LandingPage() {
tagIcon={CreditCard}
plans={[
{
id: "starter", badge: "Starter", badgeIcon: Sparkles,
id: "starter", badge: "Starter - 20% Average ROAS Lift", badgeIcon: Sparkles,
price: "$1,500", subtitle: "Per Month (Recurring)", buttons: [
{ text: "Get Started", href: "#free-offer" }
{ text: "Get 3 Free Ads Now", href: "#free-offer" }
],
features: [
"✓ 4 ad projects per month", "✓ Video ads (up to 3 variations each)", "✓ Static creatives (10+ variations)", "✓ Full-funnel packs", "✓ 48-hour turnaround", "✓ Brand consistency maintained", "✓ Email support"
]
},
{
id: "growth", badge: "Most Popular", badgeIcon: Zap,
id: "growth", badge: "Growth - 40% Average ROAS Lift", badgeIcon: Zap,
price: "$5,000", subtitle: "Per Month (Recurring)", buttons: [
{ text: "Get Started", href: "#free-offer" }
{ text: "Get 3 Free Ads Now", href: "#free-offer" }
],
features: [
"✓ Unlimited ad projects", "✓ 30 ad creatives (video & static mix)", "✓ Full-funnel packs included", "✓ 24-hour turnaround available", "✓ A/B testing variations", "✓ Performance analytics", "✓ Priority support", "✓ Dedicated account manager"
]
},
{
id: "enterprise", badge: "Enterprise", badgeIcon: Calendar,
id: "enterprise", badge: "Enterprise - Custom ROAS", badgeIcon: Calendar,
price: "Custom", subtitle: "Schedule a Call", buttons: [
{ text: "Book Appointment", href: "#contact" }
],
@@ -319,21 +482,6 @@ export default function LandingPage() {
/>
</div>
<div id="free-offer" data-section="free-offer">
<ContactCenter
tag="Free Trial - Risk Free"
title="Claim Your 3 Free Ads Now"
description="Try our service risk-free. No credit card required upfront. Get agency-quality ad creatives delivered in 48 hours. Plus, enjoy a 30-day money-back guarantee on paid plans. No follow-up sales calls. No obligations."
tagIcon={Sparkles}
background={{ variant: "downward-rays-static-grid" }}
useInvertedBackground={true}
inputPlaceholder="Enter your email address"
buttonText="Claim Your 3 Free Ads Now"
termsText="By claiming your free ads, you agree to our Terms and Conditions. No credit card required. 30-day money-back guarantee on paid plans. No follow-up calls. No obligations."
ariaLabel="Free ad offer signup"
/>
</div>
<div id="who-its-for" data-section="who-its-for">
<FeatureBorderGlow
title="Who We Help"
@@ -412,7 +560,7 @@ export default function LandingPage() {
id: "5", title: "Can I get unlimited revisions?", content: "Revision allowances vary by plan. Our Growth and Enterprise plans include comprehensive revision options. We work with you until you're happy with the results—we succeed when you succeed."
},
{
id: "6", title: "What's included in the free 3 ads offer?", content: "You get three custom ad creatives tailored to your business. This might be a mix of video ads, static creatives, or a full-funnel sample. No credit card needed, no follow-up sales calls—just quality work to show what we can do."
id: "6", title: "What's included in the free 3 ads offer?", content: "You get three custom ad creatives tailored to your business. This might be a mix of video ads, static creatives, or a full-funnel sample. No credit card needed."
}
]}
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ATkkwMdD0iTY5cZ1obi8rWoV7q/professional-headshot-of-a-young-marketi-1772624560922-a81a2ec0.png?_wi=2"
@@ -438,8 +586,8 @@ export default function LandingPage() {
background={{ variant: "downward-rays-static-grid" }}
useInvertedBackground={true}
inputPlaceholder="Enter your email address"
buttonText="Claim Your 3 Free Ads Now"
termsText="By claiming your free ads, you're confirming that you agree with our Terms and Conditions. No credit card required. 30-day money-back guarantee on paid plans. Cancel anytime, no questions asked."
buttonText="Get 3 Free Ads Now"
termsText="No credit card required. 30-day money-back guarantee on paid plans. Cancel anytime."
ariaLabel="Contact form and ad offer signup"
/>
</div>

125
src/app/thank-you/page.tsx Normal file
View File

@@ -0,0 +1,125 @@
"use client";
import { useSearchParams } from "next/navigation";
import { CheckCircle, ArrowRight } from "lucide-react";
import Link from "next/link";
export default function ThankYouPage() {
const searchParams = useSearchParams();
const url = searchParams.get("url") || "";
return (
<div className="min-h-screen bg-background flex items-center justify-center px-4 py-20">
<div className="max-w-2xl w-full">
<div className="text-center mb-8">
<div className="inline-flex items-center justify-center w-16 h-16 rounded-full bg-primary-cta/20 mb-6">
<CheckCircle size={32} className="text-primary-cta" />
</div>
<h1 className="text-4xl md:text-5xl font-bold text-foreground mb-4">
Thank You!
</h1>
<p className="text-lg text-foreground/70 mb-2">
Your free 3 ad creatives are on the way.
</p>
{url && (
<p className="text-base text-foreground/60 mb-8">
We've received your website: <span className="font-semibold text-foreground">{url}</span>
</p>
)}
</div>
<div className="bg-card border border-accent/20 rounded-lg p-8 mb-8">
<h2 className="text-2xl font-bold text-foreground mb-6">What's Next?</h2>
<div className="space-y-6">
<div className="flex gap-4">
<div className="flex-shrink-0">
<div className="flex items-center justify-center h-10 w-10 rounded-full bg-primary-cta text-primary-cta-text font-bold">
1
</div>
</div>
<div>
<h3 className="font-semibold text-foreground mb-1">Check Your Email</h3>
<p className="text-foreground/70">
Within 1-2 hours, you'll receive a welcome email with next steps and our creative brief form.
</p>
</div>
</div>
<div className="flex gap-4">
<div className="flex-shrink-0">
<div className="flex items-center justify-center h-10 w-10 rounded-full bg-primary-cta text-primary-cta-text font-bold">
2
</div>
</div>
<div>
<h3 className="font-semibold text-foreground mb-1">Fill Out the Brief</h3>
<p className="text-foreground/70">
Tell us about your product, target audience, and campaign goals. Upload any brand guidelines or reference materials.
</p>
</div>
</div>
<div className="flex gap-4">
<div className="flex-shrink-0">
<div className="flex items-center justify-center h-10 w-10 rounded-full bg-primary-cta text-primary-cta-text font-bold">
3
</div>
</div>
<div>
<h3 className="font-semibold text-foreground mb-1">Sit Back & Relax</h3>
<p className="text-foreground/70">
Our creative team will craft 3 premium ad creatives optimized for your platforms. You'll have them in 48 hours.
</p>
</div>
</div>
<div className="flex gap-4">
<div className="flex-shrink-0">
<div className="flex items-center justify-center h-10 w-10 rounded-full bg-primary-cta text-primary-cta-text font-bold">
4
</div>
</div>
<div>
<h3 className="font-semibold text-foreground mb-1">Review & Iterate</h3>
<p className="text-foreground/70">
Get your creatives and review them. We'll incorporate feedback within 24 hours. Once happy, deploy and start seeing results.
</p>
</div>
</div>
</div>
</div>
<div className="bg-gradient-to-br from-primary-cta/10 to-accent/10 border border-primary-cta/20 rounded-lg p-6 mb-8">
<h3 className="font-semibold text-foreground mb-3">💡 Pro Tips:</h3>
<ul className="space-y-2 text-foreground/70">
<li> Be specific about your target audience demographics and interests</li>
<li> Share examples of ads you like (from competitors or other brands)</li>
<li> Provide clear brand guidelines and any assets you want us to use</li>
<li> Let us know your primary conversion goal (clicks, sales, signups, etc.)</li>
</ul>
</div>
<div className="flex flex-col md:flex-row gap-4 justify-center">
<Link
href="/"
className="inline-flex items-center justify-center gap-2 px-8 py-4 bg-card border border-accent/20 text-foreground font-semibold rounded-full hover:bg-accent/5 transition-colors"
>
Back to Home
</Link>
<a
href="https://wa.me/1234567890"
target="_blank"
rel="noopener noreferrer"
className="inline-flex items-center justify-center gap-2 px-8 py-4 bg-primary-cta text-primary-cta-text font-semibold rounded-full hover:opacity-90 transition-opacity"
>
Chat with Us <ArrowRight size={18} />
</a>
</div>
<p className="text-center text-foreground/60 text-sm mt-8">
Questions? Chat with us on WhatsApp or reply to your confirmation email.
</p>
</div>
</div>
);
}