From e11f5faf3fbd4492576335cb0f0f2c922d5e0feb Mon Sep 17 00:00:00 2001 From: bender Date: Wed, 3 Jun 2026 11:52:48 +0000 Subject: [PATCH] Add src/app/payments/page.tsx --- src/app/payments/page.tsx | 95 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 95 insertions(+) create mode 100644 src/app/payments/page.tsx 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. +

+
+
+ + +
+
+ ); +}