27 Commits

Author SHA1 Message Date
6616bb776d Update src/app/pricing/page.tsx 2026-03-12 15:51:58 +00:00
4696ad433f Update src/app/pricing/page.tsx 2026-03-12 15:51:15 +00:00
ab258b9365 Update src/app/pricing/page.tsx 2026-03-12 15:50:36 +00:00
c421dbf8e4 Update src/app/pricing/page.tsx 2026-03-12 15:49:51 +00:00
43d1df6e74 Update src/app/pricing/page.tsx 2026-03-12 15:49:13 +00:00
db50ee8979 Update src/app/pricing/page.tsx 2026-03-12 15:48:36 +00:00
67772cb4e4 Update src/app/pricing/page.tsx 2026-03-12 15:47:49 +00:00
d375410b8b Update src/app/pricing/page.tsx 2026-03-12 15:47:06 +00:00
81cb1f6563 Update src/app/pricing/page.tsx 2026-03-12 15:46:23 +00:00
edbb57f2c6 Update src/app/pricing/page.tsx 2026-03-12 15:45:41 +00:00
35a1f49e21 Update src/app/pricing/page.tsx 2026-03-12 15:44:58 +00:00
ffec816741 Update src/app/pricing/page.tsx 2026-03-12 15:44:19 +00:00
d15dd2093e Merge version_19 into main
Merge version_19 into main
2026-03-12 15:42:11 +00:00
d33d1ce1df Update src/app/pricing/page.tsx 2026-03-12 15:42:07 +00:00
cad7657792 Merge version_18 into main
Merge version_18 into main
2026-03-12 15:33:41 +00:00
43042ca188 Update src/app/pricing/page.tsx 2026-03-12 15:33:37 +00:00
b552bf54dd Merge version_17 into main
Merge version_17 into main
2026-03-12 15:32:51 +00:00
9f3708d7b3 Add src/app/pricing/page.tsx 2026-03-12 15:32:47 +00:00
c81f4f5228 Update src/app/page.tsx 2026-03-12 15:32:46 +00:00
fa06961a2d Update src/app/contact/page.tsx 2026-03-12 15:32:46 +00:00
1b0bf4d1a7 Merge version_16 into main
Merge version_16 into main
2026-03-12 15:30:21 +00:00
87c67266f5 Update src/app/page.tsx 2026-03-12 15:30:17 +00:00
5550136166 Merge version_16 into main
Merge version_16 into main
2026-03-12 15:27:18 +00:00
c3f7103fb5 Update theme colors 2026-03-12 15:27:12 +00:00
1583d70c0f Merge version_16 into main
Merge version_16 into main
2026-03-12 15:25:53 +00:00
45e0165855 Update src/app/page.tsx 2026-03-12 15:25:49 +00:00
6ce1edc8ed Merge version_15 into main
Merge version_15 into main
2026-03-12 15:16:37 +00:00
3 changed files with 135 additions and 3 deletions

View File

@@ -27,6 +27,7 @@ export default function ContactPage() {
{ name: "Services", id: "services" },
{ name: "Process", id: "process" },
{ name: "For", id: "for" },
{ name: "Pricing", id: "/pricing" },
{ name: "About", id: "about" },
{ name: "Contact", id: "/contact" }
]}
@@ -61,4 +62,4 @@ export default function ContactPage() {
</div>
</ThemeProvider>
);
}
}

View File

@@ -34,6 +34,7 @@ export default function LandingPage() {
{ name: "Services", id: "services" },
{ name: "Process", id: "process" },
{ name: "For", id: "for" },
{ name: "Pricing", id: "/pricing" },
{ name: "About", id: "about" },
{ name: "Contact", id: "/contact" }
]}
@@ -91,6 +92,21 @@ export default function LandingPage() {
/>
</div>
<div id="textbox" data-section="textbox">
<div style={{
maxWidth: "800px", margin: "0 auto", padding: "3rem 1.5rem", textAlign: "center"
}}>
<h2 style={{
fontSize: "2rem", fontWeight: "700", marginBottom: "1rem", color: "var(--foreground)"
}}>Welcome to Our Text Box</h2>
<p style={{
fontSize: "1.125rem", lineHeight: "1.6", color: "var(--foreground)", opacity: "0.9"
}}>
This is a simple text box section added to the home page. You can add any content you want here, including text, paragraphs, or any other information you'd like to display to your visitors.
</p>
</div>
</div>
<div id="demo-website" data-section="demo-website">
<MetricSplitMediaAbout
tag="Low-Friction Path to Results"
@@ -181,7 +197,7 @@ export default function LandingPage() {
{
id: "enterprise", badge: "For Scaling Brands", badgeIcon: Zap,
price: "$500/mo", subtitle: "Maximum creative output and strategy", buttons: [{ text: "Get Started", href: "/contact" }],
features: ["15+ ad variations monthly", "A/B testing frameworks", "Video and static assets", "Campaign-specific creative", "Unlimited revisions", "Dedicated creative support", "Quarterly strategy sessions"]
features: ["15+ ad variations monthly", "A/B testing frameworks", "Video and static assets", "Campaign-specific creative", "Unlimited revisions", "Dedicated creative support", ""]
}
]}
animationType="slide-up"
@@ -263,4 +279,4 @@ export default function LandingPage() {
</div>
</ThemeProvider>
);
}
}

115
src/app/pricing/page.tsx Normal file
View File

@@ -0,0 +1,115 @@
"use client"
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import PricingCardEight from '@/components/sections/pricing/PricingCardEight';
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
import ContactCTA from '@/components/sections/contact/ContactCTA';
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
import { DollarSign, Sparkles, Star, Zap, Rocket } from "lucide-react";
export default function PricingPage() {
return (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="reveal-blur"
borderRadius="soft"
contentWidth="compact"
sizing="mediumLarge"
background="circleGradient"
cardStyle="soft-shadow"
primaryButtonStyle="primary-glow"
secondaryButtonStyle="layered"
headingFontWeight="light"
>
<div id="nav" data-section="nav">
<NavbarStyleApple
brandName="Convrsn"
navItems={[
{ name: "Services", id: "services" },
{ name: "Process", id: "process" },
{ name: "For", id: "for" },
{ name: "Pricing", id: "/pricing" },
{ name: "About", id: "about" },
{ name: "Contact", id: "/contact" }
]}
/>
</div>
<div id="pricing" data-section="pricing">
<PricingCardEight
title="Ad Creative Pricing"
description="Professional monthly ad creative packages to keep your campaigns fresh and competitive. These plans cover ad creative production only. For website design and Meta ads management, please contact us for a custom quote or book a strategy call."
tag="Transparent Pricing"
tagIcon={DollarSign}
plans={[
{
id: "starter", subtitle: "Popular", price: "$200/mo", buttons: [{ text: "Get Started", href: "/contact" }],
features: ["4-6 ad variations", "Multiple hooks and angles", "Primary ad text and headlines", "Correct ad sizes and formats", "Ready to upload"]
},
{
id: "professional", subtitle: "Most Popular", price: "$350/mo", buttons: [{ text: "Get Started", href: "/contact" }],
features: ["8-12 ad variations", "Diverse visual angles", "Copy testing variations", "Multiple formats and sizes", "Platform-optimized specs", "Priority support"]
},
{
id: "enterprise", subtitle: "Enterprise", price: "$500/mo", buttons: [{ text: "Get Started", href: "/contact" }],
features: ["15+ ad variations monthly", "A/B testing frameworks", "Video and static assets", "Campaign-specific creative", "Unlimited revisions", "Dedicated creative support"]
}
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={false}
/>
</div>
<div id="pricing-nine" data-section="pricing-nine">
<PricingCardNine
title="Service Plans"
description="Comprehensive packages designed to help your business grow with our complete customer acquisition system."
tag="All-in-One Solutions"
tagIcon={Zap}
plans={[
{
id: "essential", subtitle: "Getting Started", price: "$1,500", buttons: [{ text: "Get Started", href: "/contact" }],
features: ["Custom website design", "Basic Meta ads setup", "Initial creative package", "30-day support"]
},
{
id: "professional", subtitle: "Most Popular", price: "$2,500", buttons: [{ text: "Get Started", href: "/contact" }],
features: ["Advanced website design", "Full Meta ads management", "Monthly creative production", "3-month strategy support", "Performance optimization"]
},
{
id: "enterprise", subtitle: "Maximum Growth", price: "$4,000", buttons: [{ text: "Get Started", href: "/contact" }],
features: ["Premium website design", "Dedicated ads manager", "Weekly creative delivery", "6-month strategy support", "Custom reporting", "Priority support"]
}
]}
animationType="slide-up"
textboxLayout="default"
useInvertedBackground={true}
/>
</div>
<div id="contact" data-section="contact">
<ContactCTA
tag="Ready to Grow?"
tagIcon={Rocket}
title="Start Getting More Customers Today"
description="Let's discuss your customer acquisition goals and build a strategy that brings you results. Whether you need a website, ads, creative, or a complete system, we're ready to help."
buttons={[
{ text: "Request Your Free Demo Website", href: "/contact" },
{ text: "Schedule a Call", href: "/contact" }
]}
background={{ variant: "sparkles-gradient" }}
useInvertedBackground={false}
/>
</div>
<div id="footer" data-section="footer">
<FooterLogoReveal
logoText="Convrsn"
leftLink={{ text: "Privacy Policy", href: "#" }}
rightLink={{ text: "Terms of Service", href: "#" }}
/>
</div>
</ThemeProvider>
);
}