Compare commits
133 Commits
version_5
...
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 | |||
| 6616bb776d | |||
| 4ec354d469 | |||
| 4696ad433f | |||
| 983105fdf9 | |||
| ab258b9365 | |||
| 45ff0d0885 | |||
| c421dbf8e4 | |||
| 727dd8819a | |||
| 43d1df6e74 | |||
| 52f34cbbc4 | |||
| db50ee8979 | |||
| 41db11826f | |||
| 67772cb4e4 | |||
| 8c529e8c8d | |||
| d375410b8b | |||
| 3e305a5b48 | |||
| 81cb1f6563 | |||
| e6c200b11f | |||
| edbb57f2c6 | |||
| 16e8ba1dea | |||
| 35a1f49e21 | |||
| 6b4e87d982 | |||
| ffec816741 | |||
| d15dd2093e | |||
| d33d1ce1df | |||
| cad7657792 | |||
| 43042ca188 | |||
| b552bf54dd | |||
| 9f3708d7b3 | |||
| c81f4f5228 | |||
| fa06961a2d | |||
| 1b0bf4d1a7 | |||
| 87c67266f5 | |||
| 5550136166 | |||
| c3f7103fb5 | |||
| 1583d70c0f | |||
| 45e0165855 | |||
| 6ce1edc8ed | |||
| bd3a3d0210 | |||
| 704b201c38 | |||
| 397602a18a | |||
| bfb40dc999 | |||
| 658fadffce | |||
| 3bd977f5cc | |||
| 8fb50d8838 | |||
| 3160f7bcca | |||
| 8e50e5d6f1 | |||
| 629742cbad | |||
| a74634d4fd | |||
| 37bf032860 | |||
| b49dca4792 | |||
| 4c4d6f93d6 | |||
| 94794ccae8 | |||
| 6e2f7a5bb3 | |||
| d4918fce3a | |||
| 94d1da40bd | |||
| 5af88cd75f | |||
| 239fbb8bd6 | |||
| b038d739cb | |||
| 5de74e523b | |||
| 18bc061d88 | |||
| 432141cd08 | |||
| 4054287f65 | |||
| d0ac4e48b7 | |||
| 65a9a5053c | |||
| acfd6516f6 | |||
| 403c48017a | |||
| b3e2c7a5a9 | |||
| c7e3fd58db | |||
| 7d9340d64a | |||
| 8fa4c42b8a | |||
| 354fb575bb | |||
| 25b1019d9a | |||
| 773ac419ac | |||
| 38614abc78 | |||
| 7c8e712cd9 | |||
| 721a6c43be | |||
| adef4a976a | |||
| 78ec7f0eaf | |||
| ddcd1f7fd6 | |||
| 34abc8d832 | |||
| 407345b33c | |||
| 798b9edc44 | |||
| 180e770a72 | |||
| 363490bb64 | |||
| 316983f1ea | |||
| 798178b81f | |||
| 7d21f6b219 | |||
| 1d3e5ce2da | |||
| 05a36aa8c2 | |||
| 10421ae757 | |||
| 8ce25cecb5 | |||
| 02205a875c | |||
| e5ade33959 | |||
| a88652740b |
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>
|
||||
);
|
||||
}
|
||||
75
src/app/contact/page.tsx
Normal file
75
src/app/contact/page.tsx
Normal file
@@ -0,0 +1,75 @@
|
||||
"use client"
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import ContactSplit from '@/components/sections/contact/ContactSplit';
|
||||
import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal';
|
||||
|
||||
export default function ContactPage() {
|
||||
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="contact" data-section="contact">
|
||||
<ContactSplit
|
||||
tag="Get In Touch"
|
||||
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="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="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">
|
||||
<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,8 @@ export default function LandingPage() {
|
||||
{ name: "Services", id: "services" },
|
||||
{ name: "Process", id: "process" },
|
||||
{ name: "For", id: "for" },
|
||||
{ name: "About", id: "about" },
|
||||
{ name: "Contact", id: "contact" }
|
||||
{ name: "About", id: "/about" },
|
||||
{ name: "Contact", id: "/contact" }
|
||||
]}
|
||||
/>
|
||||
</div>
|
||||
@@ -48,10 +48,10 @@ export default function LandingPage() {
|
||||
tag="Customer Acquisition Engine"
|
||||
tagIcon={Zap}
|
||||
buttons={[
|
||||
{ text: "Get Your Free Demo Website", href: "contact" },
|
||||
{ text: "Book a Call", href: "contact" }
|
||||
{ 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={[
|
||||
@@ -75,15 +75,15 @@ export default function LandingPage() {
|
||||
features={[
|
||||
{
|
||||
id: 1,
|
||||
title: "Website Design", description: "A multi-page, high-converting website designed to bring you customers. Optimized for mobile and desktop with clear CTAs, lead capture forms, click-to-call buttons, and fast turnaround within 24-48 hours.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/illustration-showing-website-design-elem-1773240172578-a3c8c2d4.png"
|
||||
title: "Website Design", description: "24-72 hour delivery badge: Multi-page, high-converting website designed to bring you customers. Optimized for mobile and desktop with clear CTAs, lead capture forms, and click-to-call buttons. Industry-leading turnaround time.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/illustration-showing-website-design-elem-1773240172578-a3c8c2d4.png"
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "Meta Ads Management", description: "Strategic Facebook and Instagram advertising focused on customer acquisition. We research your audience, set up campaigns, optimize for leads or sales, and continuously improve performance based on results.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/clean-illustration-showing-audience-targ-1773240173056-7ab9eeb8.png"
|
||||
title: "Meta Ads Management", description: "✓ Proven results: Strategic Facebook and Instagram advertising focused on customer acquisition. We research your audience, set up campaigns, optimize for leads or sales, and continuously improve performance based on results.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/clean-illustration-showing-audience-targ-1773240173056-7ab9eeb8.png"
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
title: "Monthly Ad Creative", description: "Ongoing creative production to support your ad campaigns. Multiple hooks, copy variations, ad sizes, and formats delivered ready to upload. Stay competitive with fresh creative angles every month.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/illustration-of-creative-content-product-1773240172341-89b17938.png"
|
||||
title: "Monthly Ad Creative", description: "📦 Delivered monthly: Ongoing creative production to support your ad campaigns. Multiple hooks, copy variations, ad sizes, and formats delivered ready to upload. Stay competitive with fresh creative angles every month.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/illustration-of-creative-content-product-1773240172341-89b17938.png"
|
||||
}
|
||||
]}
|
||||
textboxLayout="default"
|
||||
@@ -101,7 +101,7 @@ export default function LandingPage() {
|
||||
{ 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"
|
||||
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"
|
||||
@@ -122,7 +122,7 @@ export default function LandingPage() {
|
||||
},
|
||||
{
|
||||
id: 2,
|
||||
title: "We Build Your Website", description: "We create a customer-focused, high-converting website designed to generate leads, calls, bookings, or sales. Typically completed within 24-48 hours. Most agencies take 3-6 weeks. We move faster.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/clean-illustration-showing-a-designer-or-1773240172767-2a1dd349.png"
|
||||
title: "We Build Your Website", description: "24-72 hour delivery: We create a customer-focused, high-converting website designed to generate leads, calls, bookings, or sales. Most agencies take 3-6 weeks. We move faster with industry-leading speed.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/clean-illustration-showing-a-designer-or-1773240172767-2a1dd349.png"
|
||||
},
|
||||
{
|
||||
id: 3,
|
||||
@@ -142,19 +142,19 @@ export default function LandingPage() {
|
||||
tagIcon={Target}
|
||||
products={[
|
||||
{
|
||||
id: "1", name: "Service Businesses", price: "Contractors • Landscapers • Roofers", variant: "Handymen • Plumbers • HVAC • Remodelers", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/professional-company-logo-featuring-a-cl-1773240171168-edcfb9af.png", imageAlt: "Service Business Logo"
|
||||
id: "1", name: "", price: "", variant: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/tmp/professional-local-contractor-standing-n-1773326968021-51e00a46.png", imageAlt: "Service Business Logo"
|
||||
},
|
||||
{
|
||||
id: "2", name: "Local Service Industries", price: "Barbershops • Gyms • Salons", variant: "Aesthetics • Hair Services • Fitness Studios", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/professional-company-logo-for-a-home-ser-1773240172200-a52bb718.png", imageAlt: "Local Service Logo"
|
||||
id: "2", name: "", price: "", variant: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/tmp/modern-barber-or-aesthetic-professional--1773327044104-512242e1.png", imageAlt: "Local Service Logo"
|
||||
},
|
||||
{
|
||||
id: "3", name: "E-Commerce Brands", price: "Online Retail • Direct-to-Consumer", variant: "Product-Based • Dropshipping • SaaS", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/professional-company-logo-for-an-e-comme-1773240170868-abdef8d7.png", imageAlt: "E-Commerce Logo"
|
||||
id: "3", name: "", price: "", variant: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/clean-modern-workspace-with-product-pack-1773327115199-5b2b44d1.png", imageAlt: "E-Commerce Logo"
|
||||
},
|
||||
{
|
||||
id: "4", name: "Professional Services", price: "Consulting • Agencies • Advisors", variant: "Brokers • Coaches • Digital Agencies", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/professional-company-logo-for-a-consulti-1773240171175-4c6b60a1.png", imageAlt: "Professional Services Logo"
|
||||
id: "4", name: "", price: "", variant: "", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3Ai86BRUMbva0WDBhojvh7eeV0v/tmp/confident-business-professional-working--1773327576054-cf3ce66b.png", imageAlt: "Professional Services Logo"
|
||||
}
|
||||
]}
|
||||
gridVariant="uniform-all-items-equal"
|
||||
gridVariant="bento-grid"
|
||||
animationType="slide-up"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={true}
|
||||
@@ -170,18 +170,18 @@ export default function LandingPage() {
|
||||
plans={[
|
||||
{
|
||||
id: "starter", badge: "Good for Beginners", badgeIcon: Sparkles,
|
||||
price: "$200/mo", subtitle: "Fresh creative angles monthly", buttons: [{ text: "Get Started", href: "contact" }],
|
||||
price: "$200/mo", subtitle: "Fresh creative angles monthly", 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", badge: "Most Popular", badgeIcon: Star,
|
||||
price: "$350/mo", subtitle: "Comprehensive creative support", buttons: [{ text: "Get Started", href: "contact" }],
|
||||
price: "$350/mo", subtitle: "Comprehensive creative support", 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", 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"]
|
||||
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", " Creative tailored to your offer and audience", "Dedicated creative support", "Structured revision rounds included "]
|
||||
}
|
||||
]}
|
||||
animationType="slide-up"
|
||||
@@ -198,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={[
|
||||
@@ -246,8 +246,8 @@ export default function LandingPage() {
|
||||
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: "#" },
|
||||
{ text: "Book a Strategy Call", href: "#" }
|
||||
{ text: "Request Your Free Demo Website", href: "/contact" },
|
||||
{ text: "Schedule a Call", href: "/contact" }
|
||||
]}
|
||||
background={{ variant: "sparkles-gradient" }}
|
||||
useInvertedBackground={false}
|
||||
|
||||
@@ -10,15 +10,15 @@
|
||||
--accent: #ffffff;
|
||||
--background-accent: #ffffff; */
|
||||
|
||||
--background: #ffffff;
|
||||
--card: #f9f9f9;
|
||||
--foreground: #000f06e6;
|
||||
--primary-cta: #0a7039;
|
||||
--primary-cta-text: #ffffff;
|
||||
--secondary-cta: #f9f9f9;
|
||||
--secondary-cta-text: #000f06e6;
|
||||
--accent: #e2e2e2;
|
||||
--background-accent: #c4c4c4;
|
||||
--background: #0a0a0a;
|
||||
--card: #1a1a1a;
|
||||
--foreground: #ffffffe6;
|
||||
--primary-cta: #e6e6e6;
|
||||
--primary-cta-text: #0a0a0a;
|
||||
--secondary-cta: #1a1a1a;
|
||||
--secondary-cta-text: #ffffffe6;
|
||||
--accent: #737373;
|
||||
--background-accent: #737373;
|
||||
|
||||
/* text sizing - set by ThemeProvider */
|
||||
/* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem);
|
||||
|
||||
Reference in New Issue
Block a user