diff --git a/src/app/integrations/page.tsx b/src/app/integrations/page.tsx new file mode 100644 index 0000000..0afd2fe --- /dev/null +++ b/src/app/integrations/page.tsx @@ -0,0 +1,114 @@ +"use client"; + +import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; +import ReactLenis from "lenis/react"; +import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatingOverlay/NavbarLayoutFloatingOverlay'; +import FooterBaseReveal from '@/components/sections/footer/FooterBaseReveal'; +import FeatureCardSeven from '@/components/sections/feature/FeatureCardSeven'; + +export const metadata = { + title: "ReservaFlow: Integrations & Multi-Language Support", description: "Set up email notifications, WhatsApp integration, SMS architecture, and multi-language support for your restaurant with ReservaFlow."}; + +export default function IntegrationsPage() { + const navItems = [ + { name: "Home", id: "#home" }, + { name: "About", id: "#about" }, + { name: "Features", id: "#features" }, + { name: "Solutions", id: "#solutions" }, + { name: "Pricing", id: "#pricing" }, + { name: "Testimonials", id: "#testimonials" }, + { name: "Integrations", id: "/integrations" }, + { name: "Contact", id: "#contact" }, + ]; + + const footerColumns = [ + { + title: "Platform", items: [ + { label: "Reservation Management", href: "#features" }, + { label: "Online Ordering", href: "#features" }, + { label: "Loyalty Programs", href: "#features" }, + { label: "Admin Analytics", href: "#features" }, + ], + }, + { + title: "Solutions", items: [ + { label: "Fine Dining", href: "#solutions" }, + { label: "Hotels & Resorts", href: "#solutions" }, + { label: "Cafés & Casual", href: "#solutions" }, + ], + }, + { + title: "Company", items: [ + { label: "About Us", href: "#about" }, + { label: "Pricing", href: "#pricing" }, + { label: "Testimonials", href: "#testimonials" }, + { label: "Integrations", href: "/integrations" }, + { label: "Contact", href: "#contact" }, + ], + }, + { + title: "Legal", items: [ + { label: "Privacy Policy", href: "#" }, + { label: "Terms of Service", href: "#" }, + { label: "Cookie Policy", href: "#" }, + ], + }, + ]; + + return ( + + + + +
+ +
+ + +
+
+ ); +} \ No newline at end of file