Compare commits
49 Commits
version_20
...
version_26
| Author | SHA1 | Date | |
|---|---|---|---|
| 819d1bb120 | |||
| 91298cadae | |||
| 2c2890362c | |||
| d6e3748ee5 | |||
| 68b33a1487 | |||
| 496217b551 | |||
| 106111ee0a | |||
| 5714224423 | |||
| 11d738c3e5 | |||
| effbf6d2f3 | |||
| 015962175f | |||
| c620384dbf | |||
| 9277f55e14 | |||
| 5cd1fddd5a | |||
| 350bbf58b0 | |||
| ae9999de6b | |||
| 7e4ed2df73 | |||
| f272ef7b84 | |||
| fc10ec9e64 | |||
| 717781f0dc | |||
| 10fdb5e955 | |||
| 83fbb6bfa3 | |||
| 50d139b13b | |||
| 07e12750ca | |||
| 555242143c | |||
| 68bad27acf | |||
| c0fbdce9b8 | |||
| e5a38c489b | |||
| c6641d32c8 | |||
| 2f71547c50 | |||
| a80977064c | |||
| 776b725498 | |||
| e90614d4ac | |||
| 6e01e5a496 | |||
| 340343b23b | |||
| 2f7a771478 | |||
| bfec206898 | |||
| 62276f6915 | |||
| 4ec354d469 | |||
| 983105fdf9 | |||
| 45ff0d0885 | |||
| 727dd8819a | |||
| 52f34cbbc4 | |||
| 41db11826f | |||
| 8c529e8c8d | |||
| 3e305a5b48 | |||
| e6c200b11f | |||
| 16e8ba1dea | |||
| 6b4e87d982 |
63
src/app/about/page.tsx
Normal file
63
src/app/about/page.tsx
Normal file
@@ -0,0 +1,63 @@
|
||||
"use client"
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import MetricSplitMediaAbout from '@/components/sections/about/MetricSplitMediaAbout';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import { Sparkles } from "lucide-react";
|
||||
|
||||
export default function AboutPage() {
|
||||
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: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="demo-website" data-section="demo-website">
|
||||
<MetricSplitMediaAbout
|
||||
tag="Low-Friction Path to Results"
|
||||
tagIcon={Sparkles}
|
||||
title="See a Free Demo Website for Your Business"
|
||||
description="We'll create a quick demo website concept tailored to your business to show you what's possible. No commitment needed. Just give us your business name and city, we'll build a sample website in our style, and walk you through it. See your potential before deciding to move forward."
|
||||
metrics={[
|
||||
{ value: "24-48 hrs", title: "Turnaround Time" },
|
||||
{ value: "Free", title: "Demo Website" }
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/a-gorgeous-professional-website-mockup-d-1773240173927-fb2f8a9b.png?_wi=1"
|
||||
imageAlt="Demo website preview mockup"
|
||||
useInvertedBackground={true}
|
||||
mediaAnimation="slide-up"
|
||||
metricsAnimation="slide-up"
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Convrsn"
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "Terms of Service", href: "#" }}
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
@@ -3,8 +3,7 @@
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FooterLogoReveal from '@/components/sections/footer/FooterLogoReveal';
|
||||
import { Mail } from "lucide-react";
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
|
||||
export default function ContactPage() {
|
||||
return (
|
||||
@@ -27,8 +26,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: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
/>
|
||||
@@ -37,29 +35,41 @@ export default function ContactPage() {
|
||||
<div id="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Get In Touch"
|
||||
tagIcon={Mail}
|
||||
title="See What's Possible for Your Business "
|
||||
description="Ready to grow your business? Share your information and let's schedule a call to discuss your needs. Whether you're looking for a website, ads management, creative producti"
|
||||
title="Let's Talk About Your Project"
|
||||
description="We'd love to hear from you. Reach out to us directly with any questions or to discuss how we can help grow your business."
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
imageSrc="http://img.b2bpic.net/premium-photo/abstract-futuristic-blue-background-technology-glowing-lines_118195-51.jpg?id=5040937"
|
||||
imageAlt="Contact us mockup"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/a-modern-clean-website-design-mockup-dis-1773240171755-25981f6a.png?_wi=2"
|
||||
imageAlt="Contact form illustration"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="right"
|
||||
inputPlaceholder="your@email.com"
|
||||
buttonText="Get Started"
|
||||
termsText="We respect your privacy. We'll only use your information to discuss your customer acquisition needs."
|
||||
inputPlaceholder="Enter your email"
|
||||
buttonText="Send Message"
|
||||
termsText="By contacting us, you agree to our Terms and Conditions."
|
||||
onSubmit={(email) => console.log('Contact form submitted:', email)}
|
||||
/>
|
||||
</div>
|
||||
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterLogoReveal
|
||||
logoText="Convrsn"
|
||||
leftLink={{ text: "Privacy Policy", href: "#" }}
|
||||
rightLink={{ text: "Terms of Service", href: "#" }}
|
||||
<FooterBaseReveal
|
||||
columns={[
|
||||
{
|
||||
title: "Company", items: [
|
||||
{ label: "About", href: "#" },
|
||||
{ label: "Services", href: "#" },
|
||||
{ label: "Contact", href: "#" }
|
||||
]
|
||||
},
|
||||
{
|
||||
title: "Legal", items: [
|
||||
{ label: "Privacy Policy", href: "#" },
|
||||
{ label: "Terms of Service", href: "#" }
|
||||
]
|
||||
}
|
||||
]}
|
||||
copyrightText="© 2026 Convrsn. All rights reserved."
|
||||
/>
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -34,8 +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: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
/>
|
||||
@@ -52,7 +51,7 @@ export default function LandingPage() {
|
||||
{ text: "Get Your Free Demo Website", href: "/contact" },
|
||||
{ text: "Schedule a meeting", href: "/contact" }
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/a-modern-clean-website-design-mockup-dis-1773240171755-25981f6a.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/a-modern-clean-website-design-mockup-dis-1773240171755-25981f6a.png?_wi=1"
|
||||
imageAlt="High-converting website design mockup"
|
||||
mediaAnimation="slide-up"
|
||||
marqueeItems={[
|
||||
@@ -92,21 +91,6 @@ 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"
|
||||
@@ -197,7 +181,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", ""]
|
||||
features: ["15+ ad variations monthly", "A/B testing frameworks", "Video and static assets", "Campaign-specific creative", " Creative tailored to your offer and audience", "Dedicated creative support", "Structured revision rounds included "]
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -214,20 +198,20 @@ export default function LandingPage() {
|
||||
tagIcon={Quote}
|
||||
testimonials={[
|
||||
{
|
||||
id: "1", name: "Sarah Johnson", role: "Founder & CEO", company: "Johnson Construction", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/professional-headshot-of-a-confident-ent-1773240173131-9be7d8c7.png"
|
||||
id: "1", name: "Mark Johnson ", role: "Founder & CEO", company: "Johnson Construction", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/professional-headshot-of-a-confident-ent-1773240173131-9be7d8c7.png?_wi=2"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Michael Chen", role: "Owner", company: "Digital Marketing Agency", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/professional-headshot-of-a-business-prof-1773240172753-c1cf042a.png"
|
||||
id: "2", name: "Sarah Johnson ", role: "Owner", company: "Digital Marketing Agency", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/professional-headshot-of-a-business-prof-1773240172753-c1cf042a.png?_wi=2"
|
||||
},
|
||||
{
|
||||
id: "3", name: "Emily Rodriguez", role: "E-Commerce Director", company: "Fashion & Retail Co", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/professional-headshot-of-a-female-busine-1773240171458-9b3db851.png"
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/professional-headshot-of-a-female-busine-1773240171458-9b3db851.png?_wi=2"
|
||||
},
|
||||
{
|
||||
id: "4", name: "David Williams", role: "Service Business Owner", company: "Premium Home Services", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/professional-headshot-of-a-creative-prof-1773240172454-7572c59b.png"
|
||||
id: "4", name: "Michaela Williams", role: "Service Business Owner", company: "Premium Home Services", rating: 5,
|
||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/professional-headshot-of-a-creative-prof-1773240172454-7572c59b.png?_wi=2"
|
||||
}
|
||||
]}
|
||||
kpiItems={[
|
||||
@@ -279,4 +263,4 @@ export default function LandingPage() {
|
||||
</div>
|
||||
</ThemeProvider>
|
||||
);
|
||||
}
|
||||
}
|
||||
@@ -1,115 +0,0 @@
|
||||
"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>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user