diff --git a/src/app/consultation/page.tsx b/src/app/consultation/page.tsx
index c9eac78..2611292 100644
--- a/src/app/consultation/page.tsx
+++ b/src/app/consultation/page.tsx
@@ -8,23 +8,22 @@ 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 ButtonShiftHover from '@/components/button/ButtonShiftHover/ButtonShiftHover';
+import ContactCenter from '@/components/sections/contact/ContactCenter';
+import { useRouter } from 'next/navigation';
export default function ConsultationPage() {
+ const router = useRouter();
const navItems = [
- { name: 'Home', id: 'home', href: '/' },
- { name: 'Services', id: 'services', href: '/#services' },
- { name: 'Portfolio', id: 'portfolio', href: '/#portfolio' },
- { name: 'Testimonials', id: 'testimonials', href: '/#testimonials' },
- { name: 'Contact', id: 'contact', href: '/#contact' },
- { name: 'Consultation', id: '/consultation', href: '/consultation' }
+ { 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' }
];
- 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 (