Compare commits
26 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| f05d05031d | |||
| 282aa8d16d | |||
| c1bbae0949 | |||
| 879671b69f | |||
| 387419d260 | |||
| c752717611 | |||
| 481f19c4df | |||
| a7ae57a189 | |||
| f8802f4f28 | |||
| c9fea1ec70 | |||
| aec3e646a4 | |||
| cfdc4a1daa | |||
| 37b54600e1 | |||
| ab520981d9 | |||
| b400ee7958 | |||
| 043e561bca | |||
| 6cb0a3facf | |||
| 22341e7e2b | |||
| 36ab6b91ec | |||
| dc3b0e1d0d | |||
| b88461ddc9 | |||
| b7d587bcbc | |||
| 78ff4fc31f | |||
| 890b412ec2 | |||
| e3876d016b | |||
| 002767eab9 |
165
src/app/consultation/page.tsx
Normal file
165
src/app/consultation/page.tsx
Normal file
@@ -0,0 +1,165 @@
|
|||||||
|
"use client";
|
||||||
|
|
||||||
|
import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
|
||||||
|
import ReactLenis from 'lenis/react';
|
||||||
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||||
|
import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
|
||||||
|
import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
|
||||||
|
import TextBox from '@/components/Textbox';
|
||||||
|
import { ClipboardList, Brain, Target, Calendar } from 'lucide-react';
|
||||||
|
import ContactCenter from '@/components/sections/contact/ContactCenter';
|
||||||
|
import { useRouter } from 'next/navigation';
|
||||||
|
|
||||||
|
export default function ConsultationPage() {
|
||||||
|
const router = useRouter();
|
||||||
|
const navItems = [
|
||||||
|
{ name: 'Home', id: '/' },
|
||||||
|
{ name: 'Services', id: '/#services' },
|
||||||
|
{ name: 'Who This Is For', id: '/#who-this-is-for' },
|
||||||
|
{ name: 'What You Get', id: '/#what-you-get' },
|
||||||
|
{ name: 'Portfolio', id: '/#portfolio' },
|
||||||
|
{ name: 'Testimonials', id: '/#testimonials' },
|
||||||
|
{ name: 'Consultation', id: '/consultation' },
|
||||||
|
{ name: 'Contact', id: '/#contact' }
|
||||||
|
];
|
||||||
|
|
||||||
|
return (
|
||||||
|
<ThemeProvider
|
||||||
|
defaultButtonVariant="directional-hover"
|
||||||
|
defaultTextAnimation="reveal-blur"
|
||||||
|
borderRadius="pill"
|
||||||
|
contentWidth="medium"
|
||||||
|
sizing="largeSmallSizeMediumTitles"
|
||||||
|
background="noiseDiagonalGradient"
|
||||||
|
cardStyle="layered-gradient"
|
||||||
|
primaryButtonStyle="primary-glow"
|
||||||
|
secondaryButtonStyle="layered"
|
||||||
|
headingFontWeight="light"
|
||||||
|
>
|
||||||
|
<ReactLenis root>
|
||||||
|
<div id="nav" data-section="nav">
|
||||||
|
<NavbarStyleApple
|
||||||
|
navItems={navItems}
|
||||||
|
brandName="Vertex Digital"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="hero" data-section="hero">
|
||||||
|
<HeroSplitDualMedia
|
||||||
|
title="Book Your Consultation Today"
|
||||||
|
description="Unlock your potential with our tailored strategies for success. Schedule a free discovery call to outline your path to digital excellence."
|
||||||
|
background={{ variant: "sparkles-gradient" }}
|
||||||
|
tag="Strategic Partnership"
|
||||||
|
buttons={[
|
||||||
|
{
|
||||||
|
text: "Schedule a Call", href: "https://calendly.com/yourcompany/consultation"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
mediaItems={[
|
||||||
|
{
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/an-abstract-futuristic-digital-backgroun-1774275045926-cf3e365c.png?_wi=1", imageAlt: "Abstract futuristic digital background"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/futuristic-digital-brain-with-glowing-ne-1774275050013-64a6136e.png", imageAlt: "Futuristic digital brain"
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
rating={5}
|
||||||
|
ratingText="Highly Rated"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="booking-form" data-section="booking-form">
|
||||||
|
<ContactCenter
|
||||||
|
tag="Booking"
|
||||||
|
title="Confirm Your Consultation"
|
||||||
|
description="Enter your email to finalize your booking, and we'll send you a calendar invite."
|
||||||
|
background={{ variant: "sparkles-gradient" }}
|
||||||
|
useInvertedBackground={false}
|
||||||
|
inputPlaceholder="Your Email Address"
|
||||||
|
buttonText="Confirm Booking"
|
||||||
|
onSubmit={(email: string) => {
|
||||||
|
console.log("Email submitted:", email);
|
||||||
|
router.push('/confirmation');
|
||||||
|
}}
|
||||||
|
className="!py-vw-4 !bg-background-accent/50"
|
||||||
|
contentClassName="!py-vw-4 !px-vw-2_5 !bg-card border border-accent/20 rounded-pill shadow-xl"
|
||||||
|
titleClassName="!text-3xl lg:!text-4xl"
|
||||||
|
buttonClassName="!py-vw-0_75 !px-vw-2"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="value" data-section="value">
|
||||||
|
<FeatureHoverPattern
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
title="What We Offer"
|
||||||
|
description="Our specialized services are designed to address your unique challenges and drive measurable growth."
|
||||||
|
features={[
|
||||||
|
{
|
||||||
|
icon: ClipboardList,
|
||||||
|
title: "Discipline Audit", description: "Comprehensive review of your current digital operations to identify strengths and areas for improvement."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: Brain,
|
||||||
|
title: "AI-Driven Study System", description: "Leverage advanced AI insights to optimize your strategies and predict market trends effectively."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: Target,
|
||||||
|
title: "Focus Optimization", description: "Streamline your objectives and resources to maximize impact and accelerate project completion."
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: Calendar,
|
||||||
|
title: "Daily Execution Plan", description: "Receive a clear, actionable roadmap for daily tasks, ensuring consistent progress towards your goals."
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="authority" data-section="authority">
|
||||||
|
<TextBox
|
||||||
|
title="Empowering Your Future Through Strategic Innovation"
|
||||||
|
description="We provide bespoke solutions designed to elevate your brand, optimize performance, and achieve unparalleled digital excellence. Partner with us to transform your vision into reality."
|
||||||
|
textboxLayout="default"
|
||||||
|
center={true}
|
||||||
|
tag="Our Vision"
|
||||||
|
className="py-16"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="footer" data-section="footer">
|
||||||
|
<FooterSimple
|
||||||
|
columns={[
|
||||||
|
{
|
||||||
|
title: "Services", items: [
|
||||||
|
{ label: "Web Development", href: "/#services" },
|
||||||
|
{ label: "Branding", href: "/#services" },
|
||||||
|
{ label: "UI/UX Design", href: "/#services" },
|
||||||
|
{ label: "Digital Growth", href: "/#services" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Company", items: [
|
||||||
|
{ label: "Home", href: "/" },
|
||||||
|
{ label: "Portfolio", href: "/#portfolio" },
|
||||||
|
{ label: "Testimonials", href: "/#testimonials" },
|
||||||
|
{ label: "Contact", href: "/#contact" },
|
||||||
|
{ label: "Consultation", href: "/consultation" }
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
title: "Legal", items: [
|
||||||
|
{ label: "Privacy Policy", href: "#" },
|
||||||
|
{ label: "Terms of Service", href: "#" }
|
||||||
|
]
|
||||||
|
}
|
||||||
|
]}
|
||||||
|
bottomLeftText="© 2024 Vertex Digital. All rights reserved."
|
||||||
|
bottomRightText="Powered by Innovation"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
</ReactLenis>
|
||||||
|
</ThemeProvider>
|
||||||
|
);
|
||||||
|
}
|
||||||
356
src/app/page.tsx
356
src/app/page.tsx
@@ -3,14 +3,16 @@
|
|||||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||||
import ReactLenis from "lenis/react";
|
import ReactLenis from "lenis/react";
|
||||||
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
import ContactFaq from '@/components/sections/contact/ContactFaq';
|
||||||
|
import ContactText from '@/components/sections/contact/ContactText';
|
||||||
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
|
import FeatureBorderGlow from '@/components/sections/feature/featureBorderGlow/FeatureBorderGlow';
|
||||||
|
import FeatureCardTen from '@/components/sections/feature/FeatureCardTen';
|
||||||
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
import FooterSimple from '@/components/sections/footer/FooterSimple';
|
||||||
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
import HeroBillboardTestimonial from '@/components/sections/hero/HeroBillboardTestimonial';
|
||||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||||
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
import ProductCardOne from '@/components/sections/product/ProductCardOne';
|
||||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||||
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
import TestimonialCardSix from '@/components/sections/testimonial/TestimonialCardSix';
|
||||||
import { Code, Grid, MessageSquare, Palette, Rocket } from "lucide-react";
|
import { CheckCircle, Code, Grid, MessageSquare, Palette, Rocket } from "lucide-react";
|
||||||
|
|
||||||
export default function LandingPage() {
|
export default function LandingPage() {
|
||||||
return (
|
return (
|
||||||
@@ -31,25 +33,21 @@ export default function LandingPage() {
|
|||||||
<NavbarStyleApple
|
<NavbarStyleApple
|
||||||
navItems={[
|
navItems={[
|
||||||
{
|
{
|
||||||
name: "Home",
|
name: "Home", id: "home"},
|
||||||
id: "home",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Services",
|
name: "Services", id: "services"},
|
||||||
id: "services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Portfolio",
|
name: "Who This Is For", id: "who-this-is-for"},
|
||||||
id: "portfolio",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Testimonials",
|
name: "What You Get", id: "what-you-get"},
|
||||||
id: "testimonials",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
name: "Contact",
|
name: "Portfolio", id: "portfolio"},
|
||||||
id: "contact",
|
{
|
||||||
},
|
name: "Testimonials", id: "testimonials"},
|
||||||
|
{
|
||||||
|
name: "Book Now", id: "booking"},
|
||||||
|
{
|
||||||
|
name: "Contact", id: "contact"},
|
||||||
]}
|
]}
|
||||||
brandName="Vertex Digital"
|
brandName="Vertex Digital"
|
||||||
/>
|
/>
|
||||||
@@ -59,49 +57,32 @@ export default function LandingPage() {
|
|||||||
<HeroBillboardTestimonial
|
<HeroBillboardTestimonial
|
||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
background={{
|
background={{
|
||||||
variant: "canvas-reveal",
|
variant: "canvas-reveal"}}
|
||||||
}}
|
|
||||||
title="Elevate Your Digital Presence"
|
title="Elevate Your Digital Presence"
|
||||||
description="We build high-performance digital experiences that drive measurable results for modern, ambitious brands ready to lead their industry."
|
description="We build high-performance digital experiences that drive measurable results for modern, ambitious brands ready to lead their industry."
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
name: "Sarah Johnson",
|
name: "Sarah Johnson", handle: "@TechCorpCEO", testimonial: "Vertex Digital transformed our online presence. Their expertise is unmatched!", rating: 5,
|
||||||
handle: "@TechCorpCEO",
|
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-sarah-johnson-c-1774275046318-80ad333a.png?_wi=1"},
|
||||||
testimonial: "Vertex Digital transformed our online presence. Their expertise is unmatched!",
|
|
||||||
rating: 5,
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-sarah-johnson-c-1774275046318-80ad333a.png?_wi=1",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
buttons={[
|
buttons={[
|
||||||
{
|
{
|
||||||
text: "Get Started",
|
text: "Get Started", href: "#booking"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
text: "View Work",
|
text: "View Work", href: "#portfolio"},
|
||||||
href: "#portfolio",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatars={[
|
avatars={[
|
||||||
{
|
{
|
||||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-sarah-johnson-c-1774275046318-80ad333a.png",
|
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-sarah-johnson-c-1774275046318-80ad333a.png", alt: "Sarah Johnson"},
|
||||||
alt: "Sarah Johnson",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-michael-chen-fo-1774275046608-3c456103.png",
|
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-michael-chen-fo-1774275046608-3c456103.png", alt: "Michael Chen"},
|
||||||
alt: "Michael Chen",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-emily-rodriguez-1774275047482-502e58ac.png",
|
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-emily-rodriguez-1774275047482-502e58ac.png", alt: "Emily Rodriguez"},
|
||||||
alt: "Emily Rodriguez",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-david-kim-produ-1774275046493-decfe591.png",
|
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-david-kim-produ-1774275046493-decfe591.png", alt: "David Kim"},
|
||||||
alt: "David Kim",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
avatarText="Trusted by industry leaders."
|
avatarText="Trusted by industry leaders."
|
||||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/an-abstract-futuristic-digital-backgroun-1774275045926-cf3e365c.png"
|
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/an-abstract-futuristic-digital-backgroun-1774275045926-cf3e365c.png?_wi=2"
|
||||||
imageAlt="Futuristic digital background with glowing particles and gradients"
|
imageAlt="Futuristic digital background with glowing particles and gradients"
|
||||||
mediaAnimation="slide-up"
|
mediaAnimation="slide-up"
|
||||||
/>
|
/>
|
||||||
@@ -115,27 +96,92 @@ export default function LandingPage() {
|
|||||||
features={[
|
features={[
|
||||||
{
|
{
|
||||||
icon: Code,
|
icon: Code,
|
||||||
title: "High-Performance Web Development",
|
title: "High-Performance Web Development", description: "Crafting scalable, secure, and lightning-fast websites and applications tailored to your business needs."},
|
||||||
description: "Crafting scalable, secure, and lightning-fast websites and applications tailored to your business needs.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Palette,
|
icon: Palette,
|
||||||
title: "Transformative Branding Solutions",
|
title: "Transformative Branding Solutions", description: "Building powerful brand identities that resonate with your audience and set you apart in the digital landscape."},
|
||||||
description: "Building powerful brand identities that resonate with your audience and set you apart in the digital landscape.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Grid,
|
icon: Grid,
|
||||||
title: "Intuitive UI/UX Design",
|
title: "Intuitive UI/UX Design", description: "Designing exceptional user interfaces and experiences that are not only beautiful but also highly functional and engaging."},
|
||||||
description: "Designing exceptional user interfaces and experiences that are not only beautiful but also highly functional and engaging.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
icon: Rocket,
|
icon: Rocket,
|
||||||
title: "Strategic Digital Growth",
|
title: "Strategic Digital Growth", description: "Implementing data-driven strategies to enhance your online visibility, drive traffic, and achieve sustainable growth."},
|
||||||
description: "Implementing data-driven strategies to enhance your online visibility, drive traffic, and achieve sustainable growth.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Core Services"
|
title="Our Core Services"
|
||||||
description="Driving digital success through innovative solutions in web development, branding, and UI/UX design."
|
description="Driving digital success through innovative solutions in web development, branding, and UI/UX design."
|
||||||
|
buttons={[
|
||||||
|
{ text: "Book a Consultation", href: "#booking" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="who-this-is-for" data-section="who-this-is-for">
|
||||||
|
<FeatureCardTen
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
title="Who This Is For"
|
||||||
|
description="Ambitious brands often struggle to cut through the noise and achieve tangible digital growth. Vertex Digital partners with you to overcome these challenges, delivering bespoke, high-performance digital solutions that not only captivate your audience but also drive measurable results and position you as an industry leader."
|
||||||
|
features={[
|
||||||
|
{
|
||||||
|
id: "who-1", title: "", description: "", media: {
|
||||||
|
imageSrc: ""},
|
||||||
|
items: [
|
||||||
|
{ icon: CheckCircle, text: "Brands seeking measurable ROI from their digital presence" },
|
||||||
|
{ icon: CheckCircle, text: "Companies looking for a premium, custom digital solution" },
|
||||||
|
{ icon: CheckCircle, text: "Businesses aiming to stand out in a competitive market" },
|
||||||
|
{ icon: CheckCircle, text: "Visionaries who value design, performance, and strategic growth" },
|
||||||
|
],
|
||||||
|
reverse: false,
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
buttons={[
|
||||||
|
{ text: "Book a Consultation", href: "#booking" }
|
||||||
|
]}
|
||||||
|
gapClassName="mt-vw-2_5"
|
||||||
|
itemClassName="justify-center text-center"
|
||||||
|
featureTitleClassName="text-transparent"
|
||||||
|
featureDescriptionClassName="text-transparent"
|
||||||
|
contentWrapperClassName="p-vw-0_5 lg:p-vw-1_5"
|
||||||
|
listItemClassName="flex items-center gap-vw-0_5 !justify-center"
|
||||||
|
iconContainerClassName="shrink-0"
|
||||||
|
iconClassName="text-primary-cta !w-vw-1_5 !h-vw-1_5"
|
||||||
|
className="!py-vw-2_5"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="what-you-get" data-section="what-you-get">
|
||||||
|
<FeatureCardTen
|
||||||
|
animationType="slide-up"
|
||||||
|
textboxLayout="default"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
title="What You Get"
|
||||||
|
description="Our comprehensive approach ensures you receive unparalleled support and resources."
|
||||||
|
features={[
|
||||||
|
{
|
||||||
|
id: "get-1", title: "", description: "", media: {
|
||||||
|
imageSrc: ""},
|
||||||
|
items: [
|
||||||
|
{ icon: CheckCircle, text: "30-45 minute in-depth consultation" },
|
||||||
|
{ icon: CheckCircle, text: "Personalized digital blueprint tailored to your goals" },
|
||||||
|
{ icon: CheckCircle, text: "Strategic execution plan with clear milestones" },
|
||||||
|
{ icon: CheckCircle, text: "Transparent performance breakdown and analytics" },
|
||||||
|
],
|
||||||
|
reverse: false,
|
||||||
|
},
|
||||||
|
]}
|
||||||
|
buttons={[
|
||||||
|
{ text: "Book a Consultation", href: "#booking" }
|
||||||
|
]}
|
||||||
|
gapClassName="mt-vw-2_5"
|
||||||
|
itemClassName="justify-center text-center"
|
||||||
|
featureTitleClassName="text-transparent"
|
||||||
|
featureDescriptionClassName="text-transparent"
|
||||||
|
contentWrapperClassName="p-vw-0_5 lg:p-vw-1_5"
|
||||||
|
listItemClassName="flex items-center gap-vw-0_5 !justify-center"
|
||||||
|
iconContainerClassName="shrink-0"
|
||||||
|
iconClassName="text-primary-cta !w-vw-1_5 !h-vw-1_5"
|
||||||
|
className="!py-vw-2_5"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -148,50 +194,23 @@ export default function LandingPage() {
|
|||||||
carouselMode="buttons"
|
carouselMode="buttons"
|
||||||
products={[
|
products={[
|
||||||
{
|
{
|
||||||
id: "p1",
|
id: "p1", name: "Fintech Dashboard UI/UX", price: "Case Study", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/a-sleek-dark-themed-dashboard-ui-for-a-f-1774275046582-283751e2.png", imageAlt: "Fintech Dashboard UI with data visualizations"},
|
||||||
name: "Fintech Dashboard UI/UX",
|
|
||||||
price: "Case Study",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/a-sleek-dark-themed-dashboard-ui-for-a-f-1774275046582-283751e2.png",
|
|
||||||
imageAlt: "Fintech Dashboard UI with data visualizations",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p2",
|
id: "p2", name: "Luxury E-commerce Platform", price: "Case Study", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/a-minimalist-website-design-for-a-luxury-1774275046775-b342d5d6.png", imageAlt: "Luxury e-commerce website design"},
|
||||||
name: "Luxury E-commerce Platform",
|
|
||||||
price: "Case Study",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/a-minimalist-website-design-for-a-luxury-1774275046775-b342d5d6.png",
|
|
||||||
imageAlt: "Luxury e-commerce website design",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p3",
|
id: "p3", name: "AI SaaS Landing Page", price: "Case Study", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/a-dynamic-and-interactive-landing-page-d-1774275050620-0f69e6f7.png", imageAlt: "AI SaaS platform landing page"},
|
||||||
name: "AI SaaS Landing Page",
|
|
||||||
price: "Case Study",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/a-dynamic-and-interactive-landing-page-d-1774275050620-0f69e6f7.png",
|
|
||||||
imageAlt: "AI SaaS platform landing page",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p4",
|
id: "p4", name: "Tech Startup Brand Identity", price: "Case Study", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/a-comprehensive-branding-guideline-showc-1774275049992-41614640.png", imageAlt: "Branding guidelines for a tech startup"},
|
||||||
name: "Tech Startup Brand Identity",
|
|
||||||
price: "Case Study",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/a-comprehensive-branding-guideline-showc-1774275049992-41614640.png",
|
|
||||||
imageAlt: "Branding guidelines for a tech startup",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p5",
|
id: "p5", name: "Health & Wellness Mobile App", price: "Case Study", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/a-mobile-app-interface-design-for-a-heal-1774275047122-1c724469.png", imageAlt: "Mobile app UI for a health platform"},
|
||||||
name: "Health & Wellness Mobile App",
|
|
||||||
price: "Case Study",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/a-mobile-app-interface-design-for-a-heal-1774275047122-1c724469.png",
|
|
||||||
imageAlt: "Mobile app UI for a health platform",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "p6",
|
id: "p6", name: "Architecture Firm Redesign", price: "Case Study", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/a-creative-website-redesign-for-a-cuttin-1774275050498-6dcb0395.png", imageAlt: "Website redesign for an an architecture firm"},
|
||||||
name: "Architecture Firm Redesign",
|
|
||||||
price: "Case Study",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/a-creative-website-redesign-for-a-cuttin-1774275050498-6dcb0395.png",
|
|
||||||
imageAlt: "Website redesign for an architecture firm",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="Our Transformative Work"
|
title="Our Transformative Work"
|
||||||
description="Explore our recent case studies and see how we deliver measurable results for ambitious brands."
|
description="Explore our recent case studies and see how we deliver measurable results for ambitious brands."
|
||||||
|
buttons={[
|
||||||
|
{ text: "Book a Consultation", href: "#booking" }
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -202,50 +221,23 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
testimonials={[
|
testimonials={[
|
||||||
{
|
{
|
||||||
id: "t1",
|
id: "t1", name: "Sarah Johnson", handle: "CEO, TechCorp", testimonial: "Vertex Digital delivered beyond our expectations. Their blend of creativity and technical prowess is truly unique.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-sarah-johnson-c-1774275046318-80ad333a.png?_wi=2"},
|
||||||
name: "Sarah Johnson",
|
|
||||||
handle: "CEO, TechCorp",
|
|
||||||
testimonial: "Vertex Digital delivered beyond our expectations. Their blend of creativity and technical prowess is truly unique.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-sarah-johnson-c-1774275046318-80ad333a.png?_wi=2",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t2",
|
id: "t2", name: "Michael Chen", handle: "Founder, InnovateLab", testimonial: "The team at Vertex Digital brought our vision to life with a stunning website that performs incredibly well.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-michael-chen-fo-1774275046608-3c456103.png"},
|
||||||
name: "Michael Chen",
|
|
||||||
handle: "Founder, InnovateLab",
|
|
||||||
testimonial: "The team at Vertex Digital brought our vision to life with a stunning website that performs incredibly well.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-michael-chen-fo-1774275046608-3c456103.png",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t3",
|
id: "t3", name: "Emily Rodriguez", handle: "Marketing Director, GrowthCo", testimonial: "Our branding overhaul by Vertex Digital was a game-changer. We've seen significant engagement improvements.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-emily-rodriguez-1774275047482-502e58ac.png"},
|
||||||
name: "Emily Rodriguez",
|
|
||||||
handle: "Marketing Director, GrowthCo",
|
|
||||||
testimonial: "Our branding overhaul by Vertex Digital was a game-changer. We've seen significant engagement improvements.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-emily-rodriguez-1774275047482-502e58ac.png",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t4",
|
id: "t4", name: "David Kim", handle: "Product Lead, StartupXYZ", testimonial: "Their UI/UX expertise is top-tier. Our users love the new app interface – it's intuitive and beautiful.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-david-kim-produ-1774275046493-decfe591.png"},
|
||||||
name: "David Kim",
|
|
||||||
handle: "Product Lead, StartupXYZ",
|
|
||||||
testimonial: "Their UI/UX expertise is top-tier. Our users love the new app interface – it's intuitive and beautiful.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-david-kim-produ-1774275046493-decfe591.png",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t5",
|
id: "t5", name: "Jessica Lee", handle: "Brand Strategist, Visionary Brands", testimonial: "Vertex Digital understood our brand's essence and amplified it digitally. Outstanding work!", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-jessica-lee-bra-1774275047298-849cc271.png"},
|
||||||
name: "Jessica Lee",
|
|
||||||
handle: "Brand Strategist, Visionary Brands",
|
|
||||||
testimonial: "Vertex Digital understood our brand's essence and amplified it digitally. Outstanding work!",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-jessica-lee-bra-1774275047298-849cc271.png",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "t6",
|
id: "t6", name: "Alex Stone", handle: "CTO, FutureTech", testimonial: "The technical implementation for our platform was flawless. Vertex Digital sets the standard for high-performance development.", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-alex-stone-cto--1774275046395-65e8504e.png"},
|
||||||
name: "Alex Stone",
|
|
||||||
handle: "CTO, FutureTech",
|
|
||||||
testimonial: "The technical implementation for our platform was flawless. Vertex Digital sets the standard for high-performance development.",
|
|
||||||
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/professional-headshot-of-alex-stone-cto--1774275046395-65e8504e.png",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
title="What Our Clients Say"
|
title="What Our Clients Say"
|
||||||
description="Hear directly from brand leaders who have experienced transformative results with Vertex Digital."
|
description="Hear directly from brand leaders who have experienced transformative results with Vertex Digital."
|
||||||
|
buttons={[
|
||||||
|
{ text: "Book a Consultation", href: "#booking" }
|
||||||
|
]}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -257,18 +249,44 @@ export default function LandingPage() {
|
|||||||
"Google", "Microsoft", "Amazon", "Adobe", "Meta", "Apple", "IBM"
|
"Google", "Microsoft", "Amazon", "Adobe", "Meta", "Apple", "IBM"
|
||||||
]}
|
]}
|
||||||
logos={[
|
logos={[
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/minimalist-version-of-the-google-logo-wi-1774275045725-f3a4c067.png",
|
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/minimalist-version-of-the-google-logo-wi-1774275045725-f3a4c067.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/minimalist-version-of-the-microsoft-logo-1774275046594-7d9a6116.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/minimalist-version-of-the-amazon-logo-wi-1774275045750-7d5409da.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/minimalist-version-of-the-adobe-logo-wit-1774275046237-116ba5e9.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/minimalist-version-of-the-meta-logo-infi-1774275045767-39d15e00.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/minimalist-version-of-the-apple-logo-wit-1774275046227-1d95f261.png", "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/minimalist-version-of-the-ibm-logo-with--1774275046265-1f2d0170.png"]}
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/minimalist-version-of-the-microsoft-logo-1774275046594-7d9a6116.png",
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/minimalist-version-of-the-amazon-logo-wi-1774275045750-7d5409da.png",
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/minimalist-version-of-the-adobe-logo-wit-1774275046237-116ba5e9.png",
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/minimalist-version-of-the-meta-logo-infi-1774275045767-39d15e00.png",
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/minimalist-version-of-the-apple-logo-wit-1774275046227-1d95f261.png",
|
|
||||||
"https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3BLiVwn3hCu2CTKdfreiAnFI1la/minimalist-version-of-the-ibm-logo-with--1774275046265-1f2d0170.png",
|
|
||||||
]}
|
|
||||||
title="Trusted by Elite Brands"
|
title="Trusted by Elite Brands"
|
||||||
description="Our commitment to excellence has earned the trust of leading companies across various industries."
|
description="Our commitment to excellence has earned the trust of leading companies across various industries."
|
||||||
speed={35}
|
speed={35}
|
||||||
showCard={false}
|
showCard={false}
|
||||||
|
buttons={[
|
||||||
|
{ text: "Book a Consultation", href: "#booking" }
|
||||||
|
]}
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="booking" data-section="booking">
|
||||||
|
<ContactText
|
||||||
|
animationType="entrance-slide"
|
||||||
|
useInvertedBackground={true}
|
||||||
|
background={{ variant: "plain" }}
|
||||||
|
text="Ready to transform your digital presence? Book a personalized consultation to discuss your vision, goals, and how we can bring them to life."
|
||||||
|
buttons={[]}
|
||||||
|
className="!py-vw-4 !bg-background-accent/50"
|
||||||
|
contentClassName="!py-vw-4 !px-vw-2_5 !bg-card border border-accent/20 rounded-pill shadow-xl"
|
||||||
|
textClassName="!text-3xl lg:!text-4xl"
|
||||||
|
buttonClassName="!py-vw-0_75 !px-vw-2"
|
||||||
|
/>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div id="final-cta" data-section="final-cta">
|
||||||
|
<ContactText
|
||||||
|
animationType="entrance-slide"
|
||||||
|
useInvertedBackground={false}
|
||||||
|
background={{ variant: "plain" }}
|
||||||
|
text="Don't just compete, lead. Partner with Vertex Digital and redefine what's possible for your brand online."
|
||||||
|
buttons={[
|
||||||
|
{
|
||||||
|
text: "Book Your Consultation", href: "#booking"},
|
||||||
|
]}
|
||||||
|
className="!py-vw-4"
|
||||||
|
textClassName="!text-3xl lg:!text-4xl"
|
||||||
|
buttonClassName="!py-vw-0_75 !px-vw-2"
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
@@ -278,27 +296,16 @@ export default function LandingPage() {
|
|||||||
useInvertedBackground={false}
|
useInvertedBackground={false}
|
||||||
faqs={[
|
faqs={[
|
||||||
{
|
{
|
||||||
id: "faq1",
|
id: "faq1", title: "What is Vertex Digital's specialization?", content: "We specialize in high-performance web development, transformative branding, and intuitive UI/UX design for modern, ambitious brands."},
|
||||||
title: "What is Vertex Digital's specialization?",
|
|
||||||
content: "We specialize in high-performance web development, transformative branding, and intuitive UI/UX design for modern, ambitious brands.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "faq2",
|
id: "faq2", title: "What is your typical project timeline?", content: "Project timelines vary based on scope and complexity. We work closely with clients to establish clear milestones and deliver efficient, high-quality results."},
|
||||||
title: "What is your typical project timeline?",
|
|
||||||
content: "Project timelines vary based on scope and complexity. We work closely with clients to establish clear milestones and deliver efficient, high-quality results.",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
id: "faq3",
|
id: "faq3", title: "How do you measure project success?", content: "We define success through measurable KPIs, including user engagement, conversion rates, SEO performance, and overall client satisfaction, aligning with your business objectives."},
|
||||||
title: "How do you measure project success?",
|
|
||||||
content: "We define success through measurable KPIs, including user engagement, conversion rates, SEO performance, and overall client satisfaction, aligning with your business objectives.",
|
|
||||||
},
|
|
||||||
]}
|
]}
|
||||||
ctaTitle="Ready to Elevate Your Brand?"
|
ctaTitle="Ready to Elevate Your Brand?"
|
||||||
ctaDescription="Let's discuss how Vertex Digital can transform your digital presence. Get a personalized quote today."
|
ctaDescription="Let's discuss how Vertex Digital can transform your digital presence. Get a personalized quote today."
|
||||||
ctaButton={{
|
ctaButton={{
|
||||||
text: "Book a Consultation",
|
text: "Book a Consultation", href: "#booking"}}
|
||||||
href: "#",
|
|
||||||
}}
|
|
||||||
ctaIcon={MessageSquare}
|
ctaIcon={MessageSquare}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
@@ -307,58 +314,35 @@ export default function LandingPage() {
|
|||||||
<FooterSimple
|
<FooterSimple
|
||||||
columns={[
|
columns={[
|
||||||
{
|
{
|
||||||
title: "Services",
|
title: "Services", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Web Development",
|
label: "Web Development", href: "#services"},
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Branding",
|
label: "Branding", href: "#services"},
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "UI/UX Design",
|
label: "UI/UX Design", href: "#services"},
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Digital Growth",
|
label: "Digital Growth", href: "#services"},
|
||||||
href: "#services",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Company",
|
title: "Company", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "About Us",
|
label: "About Us", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Portfolio",
|
label: "Portfolio", href: "#portfolio"},
|
||||||
href: "#portfolio",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Testimonials",
|
label: "Testimonials", href: "#testimonials"},
|
||||||
href: "#testimonials",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Contact",
|
label: "Contact", href: "#contact"},
|
||||||
href: "#contact",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
title: "Legal",
|
title: "Legal", items: [
|
||||||
items: [
|
|
||||||
{
|
{
|
||||||
label: "Privacy Policy",
|
label: "Privacy Policy", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
{
|
{
|
||||||
label: "Terms of Service",
|
label: "Terms of Service", href: "#"},
|
||||||
href: "#",
|
|
||||||
},
|
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
]}
|
]}
|
||||||
|
|||||||
@@ -11,7 +11,7 @@ html {
|
|||||||
body {
|
body {
|
||||||
background-color: var(--background);
|
background-color: var(--background);
|
||||||
color: var(--foreground);
|
color: var(--foreground);
|
||||||
font-family: var(--font-font-family: var(--font-inter), sans-serif;), sans-serif;
|
font-family: var(--font-font-family: var(--font-archivo), sans-serif;), sans-serif;
|
||||||
position: relative;
|
position: relative;
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
overscroll-behavior: none;
|
overscroll-behavior: none;
|
||||||
@@ -24,5 +24,5 @@ h3,
|
|||||||
h4,
|
h4,
|
||||||
h5,
|
h5,
|
||||||
h6 {
|
h6 {
|
||||||
font-family: var(--font-font-family: var(--font-inter), sans-serif;), sans-serif;
|
font-family: var(--font-font-family: var(--font-archivo), sans-serif;), sans-serif;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,8 +10,8 @@
|
|||||||
--accent: #ffffff;
|
--accent: #ffffff;
|
||||||
--background-accent: #ffffff; */
|
--background-accent: #ffffff; */
|
||||||
|
|
||||||
--background: #0A0A0A;
|
--background: #000000;
|
||||||
--card: #1A1A1A;
|
--card: #1a1a1a;
|
||||||
--foreground: #E0E0E0;
|
--foreground: #E0E0E0;
|
||||||
--primary-cta: #00D9FF;
|
--primary-cta: #00D9FF;
|
||||||
--primary-cta-text: #0A0A0A;
|
--primary-cta-text: #0A0A0A;
|
||||||
|
|||||||
33
src/components/buttons/BookConsultationButton.tsx
Normal file
33
src/components/buttons/BookConsultationButton.tsx
Normal file
@@ -0,0 +1,33 @@
|
|||||||
|
"use client";
|
||||||
|
import ButtonTextStagger from '@/components/button/ButtonTextStagger/ButtonTextStagger';
|
||||||
|
import React from 'react';
|
||||||
|
|
||||||
|
interface BookConsultationButtonProps {
|
||||||
|
text?: string;
|
||||||
|
onClick?: () => void;
|
||||||
|
className?: string; // For additional styling
|
||||||
|
bgClassName?: string; // For background styling, typically handled by ThemeProvider primaryButtonStyle
|
||||||
|
textClassName?: string; // For text styling
|
||||||
|
ariaLabel?: string;
|
||||||
|
}
|
||||||
|
|
||||||
|
const BookConsultationButton: React.FC<BookConsultationButtonProps> = ({
|
||||||
|
text = "Book a Consultation", onClick,
|
||||||
|
className,
|
||||||
|
bgClassName,
|
||||||
|
textClassName,
|
||||||
|
ariaLabel = "Book a consultation call"}) => {
|
||||||
|
return (
|
||||||
|
<ButtonTextStagger
|
||||||
|
text={text}
|
||||||
|
href="/consultation"
|
||||||
|
onClick={onClick}
|
||||||
|
className={className}
|
||||||
|
bgClassName={bgClassName} // Rely on ThemeProvider's primaryButtonStyle
|
||||||
|
textClassName={textClassName}
|
||||||
|
ariaLabel={ariaLabel}
|
||||||
|
/>
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
export default BookConsultationButton;
|
||||||
Reference in New Issue
Block a user