Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 021a45782e | |||
| bf19d7f423 |
213
src/app/page.tsx
213
src/app/page.tsx
@@ -2,9 +2,9 @@
|
|||||||
|
|
||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactCTA from '@/components/sections/contact/ContactCTA';
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
import FeatureCardTwelve from '@/components/sections/feature/FeatureCardTwelve';
|
||||||
import FooterMedia from '@/components/sections/footer/FooterMedia';
|
import FooterLogoEmphasis from '@/components/sections/footer/FooterLogoEmphasis';
|
||||||
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
import HeroLogoBillboard from '@/components/sections/hero/HeroLogoBillboard';
|
||||||
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
import NavbarStyleFullscreen from '@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen';
|
||||||
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
|
import PricingCardOne from '@/components/sections/pricing/PricingCardOne';
|
||||||
@@ -30,21 +30,13 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleFullscreen
|
<NavbarStyleFullscreen
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Features",
|
name: "Features", id: "features"},
|
||||||
id: "features",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Pricing",
|
name: "Pricing", id: "pricing"},
|
||||||
id: "pricing",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Testimonials",
|
name: "Testimonials", id: "testimonials"},
|
||||||
id: "testimonials",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Contact", id: "contact"},
|
||||||
id: "contact",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
brandName="ADS CONVERT"
|
brandName="ADS CONVERT"
|
||||||
/>
|
/>
|
||||||
@@ -53,19 +45,14 @@ export default function LandingPage() {
|
|||||||
<div id="hero" data-section="hero">
|
<div id="hero" data-section="hero">
|
||||||
<HeroLogoBillboard
|
<HeroLogoBillboard
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
|
||||||
logoText="ADS CONVERT"
|
logoText="ADS CONVERT"
|
||||||
description="Premium ad creative that drives measurable growth. We bridge the gap between high-end aesthetic design and aggressive performance marketing."
|
description="Premium ad creative that drives measurable growth. We bridge the gap between high-end aesthetic design and aggressive performance marketing."
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Start Project",
|
text: "Start Project", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "View Work",
|
text: "View Work", href: "#features"},
|
||||||
href: "#features",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcZS81n4QLJXshyXQi4qvk3KsO/uploaded-1774790329495-w9fo5rze.jpg"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BcZS81n4QLJXshyXQi4qvk3KsO/uploaded-1774790329495-w9fo5rze.jpg"
|
||||||
imageAlt="Nike product aesthetic"
|
imageAlt="Nike product aesthetic"
|
||||||
@@ -80,34 +67,16 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
id: "f1",
|
id: "f1", label: "Analysis", title: "Precision Ad Testing", items: [
|
||||||
label: "Analysis",
|
"Multi-variant creative split testing", "Predictive performance modeling", "Automated optimization loops"],
|
||||||
title: "Precision Ad Testing",
|
|
||||||
items: [
|
|
||||||
"Multi-variant creative split testing",
|
|
||||||
"Predictive performance modeling",
|
|
||||||
"Automated optimization loops",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "f2",
|
id: "f2", label: "Design", title: "High-Conversion Creatives", items: [
|
||||||
label: "Design",
|
"Premium motion graphic suites", "Conversion-focused landing designs", "Brand-aligned ad components"],
|
||||||
title: "High-Conversion Creatives",
|
|
||||||
items: [
|
|
||||||
"Premium motion graphic suites",
|
|
||||||
"Conversion-focused landing designs",
|
|
||||||
"Brand-aligned ad components",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "f3",
|
id: "f3", label: "Growth", title: "Scaling Infrastructure", items: [
|
||||||
label: "Growth",
|
"Automated ad deployment pipelines", "Real-time performance dashboards", "Cross-platform scaling strategies"],
|
||||||
title: "Scaling Infrastructure",
|
|
||||||
items: [
|
|
||||||
"Automated ad deployment pipelines",
|
|
||||||
"Real-time performance dashboards",
|
|
||||||
"Cross-platform scaling strategies",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Performance-First Design"
|
title="Performance-First Design"
|
||||||
@@ -120,23 +89,9 @@ export default function LandingPage() {
|
|||||||
textboxLayout="default"
|
textboxLayout="default"
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
names={[
|
names={[
|
||||||
"Alpha",
|
"Alpha", "Beta", "Gamma", "Delta", "Epsilon", "Zeta", "Eta"]}
|
||||||
"Beta",
|
|
||||||
"Gamma",
|
|
||||||
"Delta",
|
|
||||||
"Epsilon",
|
|
||||||
"Zeta",
|
|
||||||
"Eta",
|
|
||||||
]}
|
|
||||||
logos={[
|
logos={[
|
||||||
"http://img.b2bpic.net/free-vector/colorful-logos-with-geometric-figures_23-2147588147.jpg",
|
"http://img.b2bpic.net/free-vector/colorful-logos-with-geometric-figures_23-2147588147.jpg", "http://img.b2bpic.net/free-vector/editable-business-card-template-white-modern-design-set_53876-100599.jpg", "http://img.b2bpic.net/free-vector/pack-linear-abstract-logos_23-2147681208.jpg", "http://img.b2bpic.net/free-vector/coloured-logo-template-design_1222-39.jpg", "http://img.b2bpic.net/free-vector/abstract-multicolored-geometric-business-card-template_23-2148293692.jpg", "http://img.b2bpic.net/free-vector/collection-minimal-pastel-logos_23-2148365434.jpg", "http://img.b2bpic.net/free-vector/six-geometric-monoline-logos_23-2147692691.jpg"]}
|
||||||
"http://img.b2bpic.net/free-vector/editable-business-card-template-white-modern-design-set_53876-100599.jpg",
|
|
||||||
"http://img.b2bpic.net/free-vector/pack-linear-abstract-logos_23-2147681208.jpg",
|
|
||||||
"http://img.b2bpic.net/free-vector/coloured-logo-template-design_1222-39.jpg",
|
|
||||||
"http://img.b2bpic.net/free-vector/abstract-multicolored-geometric-business-card-template_23-2148293692.jpg",
|
|
||||||
"http://img.b2bpic.net/free-vector/collection-minimal-pastel-logos_23-2148365434.jpg",
|
|
||||||
"http://img.b2bpic.net/free-vector/six-geometric-monoline-logos_23-2147692691.jpg",
|
|
||||||
]}
|
|
||||||
title="Trusted by Scale-ups"
|
title="Trusted by Scale-ups"
|
||||||
description="We partner with brands that refuse to compromise on design quality while chasing aggressive growth targets."
|
description="We partner with brands that refuse to compromise on design quality while chasing aggressive growth targets."
|
||||||
/>
|
/>
|
||||||
@@ -149,37 +104,16 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
plans={[
|
plans={[
|
||||||
{
|
{
|
||||||
id: "p1",
|
id: "p1", badge: "Launch", price: "$5,000/mo", subtitle: "Perfect for early-stage teams", features: [
|
||||||
badge: "Launch",
|
"3 creative assets/mo", "Basic ad setup", "Standard performance report"],
|
||||||
price: "$5,000/mo",
|
|
||||||
subtitle: "Perfect for early-stage teams",
|
|
||||||
features: [
|
|
||||||
"3 creative assets/mo",
|
|
||||||
"Basic ad setup",
|
|
||||||
"Standard performance report",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "p2",
|
id: "p2", badge: "Scale", price: "$12,000/mo", subtitle: "For fast-growing brands", features: [
|
||||||
badge: "Scale",
|
"10 creative assets/mo", "Advanced split testing", "Priority support"],
|
||||||
price: "$12,000/mo",
|
|
||||||
subtitle: "For fast-growing brands",
|
|
||||||
features: [
|
|
||||||
"10 creative assets/mo",
|
|
||||||
"Advanced split testing",
|
|
||||||
"Priority support",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "p3",
|
id: "p3", badge: "Elite", price: "$25,000/mo", subtitle: "For enterprise dominance", features: [
|
||||||
badge: "Elite",
|
"Unlimited creative assets", "Dedicated growth squad", "Custom attribution modeling"],
|
||||||
price: "$25,000/mo",
|
|
||||||
subtitle: "For enterprise dominance",
|
|
||||||
features: [
|
|
||||||
"Unlimited creative assets",
|
|
||||||
"Dedicated growth squad",
|
|
||||||
"Custom attribution modeling",
|
|
||||||
],
|
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
title="Performance Packages"
|
title="Performance Packages"
|
||||||
@@ -194,45 +128,20 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "t1",
|
id: "t1", name: "Alex Rivers", handle: "@arivers", testimonial: "The design quality is unmatched. We saw a 40% lift in CTR within the first week.", rating: 5,
|
||||||
name: "Alex Rivers",
|
imageSrc: "http://img.b2bpic.net/free-photo/close-up-elegant-executive_1098-4078.jpg?_wi=1"},
|
||||||
handle: "@arivers",
|
|
||||||
testimonial: "The design quality is unmatched. We saw a 40% lift in CTR within the first week.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-elegant-executive_1098-4078.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t2",
|
id: "t2", name: "Sarah Chen", handle: "@schen_dev", testimonial: "Finally, an agency that understands that ads should look as premium as the product.", rating: 5,
|
||||||
name: "Sarah Chen",
|
imageSrc: "http://img.b2bpic.net/free-photo/happy-man-white_1368-6366.jpg"},
|
||||||
handle: "@schen_dev",
|
|
||||||
testimonial: "Finally, an agency that understands that ads should look as premium as the product.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/happy-man-white_1368-6366.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t3",
|
id: "t3", name: "Marcus Thorne", handle: "@mthorne", testimonial: "Performance has skyrocketed. Their design process is truly systematic.", rating: 5,
|
||||||
name: "Marcus Thorne",
|
imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-smiling-camera-while-colleagues-working-ba_1170-1873.jpg"},
|
||||||
handle: "@mthorne",
|
|
||||||
testimonial: "Performance has skyrocketed. Their design process is truly systematic.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/portrait-man-smiling-camera-while-colleagues-working-ba_1170-1873.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t4",
|
id: "t4", name: "Elena V.", handle: "@elena_growth", testimonial: "Clean, aggressive, and highly effective. Best investment for our marketing funnel.", rating: 5,
|
||||||
name: "Elena V.",
|
imageSrc: "http://img.b2bpic.net/free-photo/empowered-business-woman-working-city_23-2149322942.jpg"},
|
||||||
handle: "@elena_growth",
|
|
||||||
testimonial: "Clean, aggressive, and highly effective. Best investment for our marketing funnel.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/empowered-business-woman-working-city_23-2149322942.jpg",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t5",
|
id: "t5", name: "Jordan P.", handle: "@jordan_p", testimonial: "The systematic approach they bring to ad creative completely transformed our ROAS.", rating: 5,
|
||||||
name: "Jordan P.",
|
imageSrc: "http://img.b2bpic.net/free-photo/close-up-elegant-executive_1098-4078.jpg?_wi=2"},
|
||||||
handle: "@jordan_p",
|
|
||||||
testimonial: "The systematic approach they bring to ad creative completely transformed our ROAS.",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "http://img.b2bpic.net/free-photo/close-up-elegant-executive_1098-4078.jpg",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
showRating={true}
|
showRating={true}
|
||||||
title="Proven Results"
|
title="Proven Results"
|
||||||
@@ -241,77 +150,51 @@ export default function LandingPage() {
|
|||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="contact" data-section="contact">
|
<div id="contact" data-section="contact">
|
||||||
<ContactCTA
|
<ContactText
|
||||||
useInvertedBackground={false}
|
text="Ready to scale your conversion? Book a discovery session to evaluate your current ad performance and strategy."
|
||||||
background={{
|
background={{
|
||||||
variant: "plain",
|
variant: "plain"}}
|
||||||
}}
|
useInvertedBackground={false}
|
||||||
tag="Get Started"
|
|
||||||
title="Ready to scale your conversion?"
|
|
||||||
description="Book a discovery session to evaluate your current ad performance and strategy."
|
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Book Consultation",
|
text: "Book Consultation", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<div id="footer" data-section="footer">
|
<div id="footer" data-section="footer">
|
||||||
<FooterMedia
|
<FooterLogoEmphasis
|
||||||
imageSrc="http://img.b2bpic.net/free-photo/gold-marble-art-background-diy-luxury-flowing-texture_53876-108072.jpg"
|
logoText="ADS CONVERT"
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Company",
|
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "About",
|
label: "About", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Work",
|
label: "Work", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Services",
|
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "Ad Creative",
|
label: "Ad Creative", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Strategy",
|
label: "Strategy", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Optimization",
|
label: "Optimization", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal",
|
|
||||||
items: [
|
items: [
|
||||||
{
|
{
|
||||||
label: "Privacy",
|
label: "Privacy", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Terms",
|
label: "Terms", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
logoText="ADS CONVERT"
|
|
||||||
copyrightText="© 2025 ADS CONVERT. Performance Creative."
|
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
</ReactLenis>
|
</ReactLenis>
|
||||||
|
|||||||
Reference in New Issue
Block a user