) => {
+ console.log("Booking form submitted:", data);
+ alert("Booking submitted! We will contact you shortly.");
+ // In a real application, you would send this data to a backend.
+ };
+
+ return (
+
+ ({ name: r.label, href: r.path }))}
+ ctaButton={{ text: "Get Started", href: "/contact" }}
+ />
+
+
+
+
+
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/routes.ts b/src/routes.ts
index 362ecb5..92323b0 100644
--- a/src/routes.ts
+++ b/src/routes.ts
@@ -6,4 +6,5 @@ export interface Route {
export const routes: Route[] = [
{ path: '/', label: 'Home', pageFile: 'HomePage' },
+ { path: '/booking', label: 'Booking', pageFile: 'BookingPage' },
];