Add src/app/payments/page.tsx

This commit is contained in:
2026-06-03 11:52:48 +00:00
parent 2f61db8255
commit e11f5faf3f

95
src/app/payments/page.tsx Normal file
View File

@@ -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 (
<ThemeProvider
defaultButtonVariant="expand-hover"
defaultTextAnimation="background-highlight"
borderRadius="rounded"
contentWidth="compact"
sizing="mediumLargeSizeLargeTitles"
background="blurBottom"
cardStyle="gradient-radial"
primaryButtonStyle="gradient"
secondaryButtonStyle="layered"
headingFontWeight="normal"
>
<ReactLenis root>
<div id="nav" data-section="nav">
<NavbarLayoutFloatingOverlay
navItems={navItems}
brandName="ReservaFlow"
button={{ text: "Start Free Trial", href: "#contact" }}
/>
</div>
<div id="payments-intro" data-section="payments-intro" className="py-20 md:py-32 lg:py-40">
<div className="mx-auto max-w-4xl text-center px-4">
<h1 className="text-4xl md:text-5xl lg:text-6xl font-bold mb-6 text-foreground">
Integrated Payment System
</h1>
<p className="text-lg md:text-xl text-foreground/80 mb-8">
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.
</p>
</div>
</div>
<div id="footer" data-section="footer">
<FooterBaseReveal
logoText="ReservaFlow"
columns={[
{
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: "Contact", href: "#contact" },
{ label: "Payments", href: "/payments" }
],
},
{
title: "Legal", items: [
{ label: "Privacy Policy", href: "#" },
{ label: "Terms of Service", href: "#" },
{ label: "Cookie Policy", href: "#" },
],
},
]}
copyrightText="© 2023 ReservaFlow. All rights reserved."
/>
</div>
</ReactLenis>
</ThemeProvider>
);
}