diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index 890f6ca..5343788 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -4,9 +4,10 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; import TestimonialAboutCard from "@/components/sections/about/TestimonialAboutCard"; import FeatureCardNine from "@/components/sections/feature/FeatureCardNine"; +import TeamCardSix from "@/components/sections/team/TeamCardSix"; import ContactText from "@/components/sections/contact/ContactText"; import FooterBase from "@/components/sections/footer/FooterBase"; -import { Heart, Workflow } from "lucide-react"; +import { Heart, Workflow, Users } from "lucide-react"; export default function AboutPage() { const navItems = [ @@ -58,6 +59,24 @@ export default function AboutPage() { /> +
+ +
+
{ + e.preventDefault(); + console.log("Booking submitted:", bookingFormData); + setBookingFormData({ email: "", fullName: "", phoneNumber: "" }); + }; + return (
+
+
+
+

Schedule a Consultation

+

Book a meeting with our team to discuss your project

+
+
+
+ + setBookingFormData({ ...bookingFormData, fullName: e.target.value })} + placeholder="Your full name" + className="w-full px-4 py-2 rounded-lg bg-background text-foreground border border-accent/30 focus:border-primary-cta focus:outline-none" + /> +
+
+ + setBookingFormData({ ...bookingFormData, email: e.target.value })} + placeholder="your.email@example.com" + className="w-full px-4 py-2 rounded-lg bg-background text-foreground border border-accent/30 focus:border-primary-cta focus:outline-none" + /> +
+
+ + setBookingFormData({ ...bookingFormData, phoneNumber: e.target.value })} + placeholder="+1 (555) 000-0000" + className="w-full px-4 py-2 rounded-lg bg-background text-foreground border border-accent/30 focus:border-primary-cta focus:outline-none" + /> +
+ +
+
+
+ -
- -
- -
- -
-
+
+ +
+ +
+
+
+

Schedule a Consultation

+

Book a meeting with our team to discuss your project

+
+
+
+ + setBookingFormData({ ...bookingFormData, fullName: e.target.value })} + placeholder="Your full name" + className="w-full px-4 py-2 rounded-lg bg-background text-foreground border border-accent/30 focus:border-primary-cta focus:outline-none" + /> +
+
+ + setBookingFormData({ ...bookingFormData, email: e.target.value })} + placeholder="your.email@example.com" + className="w-full px-4 py-2 rounded-lg bg-background text-foreground border border-accent/30 focus:border-primary-cta focus:outline-none" + /> +
+
+ + setBookingFormData({ ...bookingFormData, phoneNumber: e.target.value })} + placeholder="+1 (555) 000-0000" + className="w-full px-4 py-2 rounded-lg bg-background text-foreground border border-accent/30 focus:border-primary-cta focus:outline-none" + /> +
+ +
+
+
+