diff --git a/src/app/payments/page.tsx b/src/app/payments/page.tsx new file mode 100644 index 0000000..f8614e9 --- /dev/null +++ b/src/app/payments/page.tsx @@ -0,0 +1,95 @@ +"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'; + +export default function PaymentsPage() { + 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: "Contact", id: "#contact" }, + { name: "Payments", id: "/payments" }, + ]; + + return ( + + + + +
+
+

+ Integrated Payment System +

+

+ Seamlessly integrate Stripe, PayPal, and Razorpay to manage all your transactions. Our system handles deposit processing for reservations, full payments, efficient refund processing, and detailed payment tracking, providing a comprehensive solution for your restaurant's financial operations. +

+
+
+ + +
+
+ ); +}