5 Commits

Author SHA1 Message Date
387419d260 Update src/app/consultation/page.tsx 2026-03-23 16:13:08 +00:00
c752717611 Merge version_4 into main
Merge version_4 into main
2026-03-23 16:11:59 +00:00
481f19c4df Update src/app/page.tsx 2026-03-23 16:11:52 +00:00
a7ae57a189 Merge version_3 into main
Merge version_3 into main
2026-03-23 16:09:39 +00:00
aec3e646a4 Merge version_3 into main
Merge version_3 into main
2026-03-23 16:09:15 +00:00
2 changed files with 52 additions and 33 deletions

View File

@@ -1,24 +1,30 @@
"use client"; "use client";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import { ThemeProvider } from '@/providers/themeProvider/ThemeProvider';
import ReactLenis from "lenis/react"; import ReactLenis from 'lenis/react';
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple"; import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
import FooterSimple from "@/components/sections/footer/FooterSimple"; import FooterSimple from '@/components/sections/footer/FooterSimple';
import HeroSplitDualMedia from "@/components/sections/hero/HeroSplitDualMedia"; import HeroSplitDualMedia from '@/components/sections/hero/HeroSplitDualMedia';
import FeatureHoverPattern from "@/components/sections/feature/featureHoverPattern/FeatureHoverPattern"; import FeatureHoverPattern from '@/components/sections/feature/featureHoverPattern/FeatureHoverPattern';
import TextBox from "@/components/Textbox"; import TextBox from '@/components/Textbox';
import { ClipboardList, Brain, Target, Calendar } from "lucide-react"; import { ClipboardList, Brain, Target, Calendar } from 'lucide-react';
import ButtonShiftHover from '@/components/button/ButtonShiftHover/ButtonShiftHover';
export default function ConsultationPage() { export default function ConsultationPage() {
const navItems = [ const navItems = [
{ name: "Home", id: "home", href: "/" }, { name: 'Home', id: 'home', href: '/' },
{ name: "Services", id: "services", href: "/#services" }, { name: 'Services', id: 'services', href: '/#services' },
{ name: "Portfolio", id: "portfolio", href: "/#portfolio" }, { name: 'Portfolio', id: 'portfolio', href: '/#portfolio' },
{ name: "Testimonials", id: "testimonials", href: "/#testimonials" }, { name: 'Testimonials', id: 'testimonials', href: '/#testimonials' },
{ name: "Contact", id: "contact", href: "/#contact" }, { name: 'Contact', id: 'contact', href: '/#contact' },
{ name: "Consultation", id: "/consultation", href: "/consultation" } { name: 'Consultation', id: '/consultation', href: '/consultation' }
]; ];
const handleConfirmBooking = () => {
alert("Booking Confirmed! (This would submit the form or confirm the booking.)");
// In a real application, this would trigger form submission or a booking confirmation API call.
};
return ( return (
<ThemeProvider <ThemeProvider
defaultButtonVariant="directional-hover" defaultButtonVariant="directional-hover"
@@ -48,7 +54,8 @@ export default function ConsultationPage() {
tag="Strategic Partnership" tag="Strategic Partnership"
buttons={[ buttons={[
{ {
text: "Schedule a Call", href: "https://calendly.com/yourcompany/consultation"}, text: "Schedule a Call", href: "https://calendly.com/yourcompany/consultation"
}
]} ]}
mediaItems={[ mediaItems={[
{ {
@@ -63,6 +70,18 @@ export default function ConsultationPage() {
/> />
</div> </div>
{/* New "Confirm Booking" button below the booking form/scheduler section */}
<div className="flex justify-center py-vw-2_5" data-section="confirm-booking-button">
<ButtonShiftHover
text="Confirm Booking"
onClick={handleConfirmBooking}
ariaLabel="Confirm Booking"
// In a real application, 'disabled' state would be managed by form validation logic.
// For this static implementation, it's always enabled.
// disabled={!isFormFilledOrTimeSelected}
/>
</div>
<div id="value" data-section="value"> <div id="value" data-section="value">
<FeatureHoverPattern <FeatureHoverPattern
animationType="slide-up" animationType="slide-up"
@@ -73,16 +92,20 @@ export default function ConsultationPage() {
features={[ features={[
{ {
icon: ClipboardList, icon: ClipboardList,
title: "Discipline Audit", description: "Comprehensive review of your current digital operations to identify strengths and areas for improvement."}, title: "Discipline Audit", description: "Comprehensive review of your current digital operations to identify strengths and areas for improvement."
},
{ {
icon: Brain, icon: Brain,
title: "AI-Driven Study System", description: "Leverage advanced AI insights to optimize your strategies and predict market trends effectively."}, title: "AI-Driven Study System", description: "Leverage advanced AI insights to optimize your strategies and predict market trends effectively."
},
{ {
icon: Target, icon: Target,
title: "Focus Optimization", description: "Streamline your objectives and resources to maximize impact and accelerate project completion."}, title: "Focus Optimization", description: "Streamline your objectives and resources to maximize impact and accelerate project completion."
},
{ {
icon: Calendar, icon: Calendar,
title: "Daily Execution Plan", description: "Receive a clear, actionable roadmap for daily tasks, ensuring consistent progress towards your goals."}, title: "Daily Execution Plan", description: "Receive a clear, actionable roadmap for daily tasks, ensuring consistent progress towards your goals."
}
]} ]}
/> />
</div> </div>
@@ -106,8 +129,8 @@ export default function ConsultationPage() {
{ label: "Web Development", href: "/#services" }, { label: "Web Development", href: "/#services" },
{ label: "Branding", href: "/#services" }, { label: "Branding", href: "/#services" },
{ label: "UI/UX Design", href: "/#services" }, { label: "UI/UX Design", href: "/#services" },
{ label: "Digital Growth", href: "/#services" }, { label: "Digital Growth", href: "/#services" }
], ]
}, },
{ {
title: "Company", items: [ title: "Company", items: [
@@ -116,14 +139,14 @@ export default function ConsultationPage() {
{ label: "Testimonials", href: "/#testimonials" }, { label: "Testimonials", href: "/#testimonials" },
{ label: "Contact", href: "/#contact" }, { label: "Contact", href: "/#contact" },
{ label: "Consultation", href: "/consultation" } { label: "Consultation", href: "/consultation" }
], ]
}, },
{ {
title: "Legal", items: [ title: "Legal", items: [
{ label: "Privacy Policy", href: "#" }, { label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" }, { label: "Terms of Service", href: "#" }
], ]
}, }
]} ]}
bottomLeftText="© 2024 Vertex Digital. All rights reserved." bottomLeftText="© 2024 Vertex Digital. All rights reserved."
bottomRightText="Powered by Innovation" bottomRightText="Powered by Innovation"
@@ -132,4 +155,4 @@ export default function ConsultationPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }

View File

@@ -204,7 +204,7 @@ export default function LandingPage() {
{ {
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"}, 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"},
{ {
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 architecture firm"}, 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"},
]} ]}
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."
@@ -266,11 +266,7 @@ export default function LandingPage() {
useInvertedBackground={true} useInvertedBackground={true}
background={{ variant: "plain" }} 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." 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={[ buttons={[]}
{
text: "Confirm Booking", href: "#contact", // Link to the contact form or a booking tool
},
]}
className="!py-vw-4 !bg-background-accent/50" 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" contentClassName="!py-vw-4 !px-vw-2_5 !bg-card border border-accent/20 rounded-pill shadow-xl"
textClassName="!text-3xl lg:!text-4xl" textClassName="!text-3xl lg:!text-4xl"
@@ -357,4 +353,4 @@ export default function LandingPage() {
</ReactLenis> </ReactLenis>
</ThemeProvider> </ThemeProvider>
); );
} }