diff --git a/src/app/payment/page.tsx b/src/app/payment/page.tsx index b013971..6fbe715 100644 --- a/src/app/payment/page.tsx +++ b/src/app/payment/page.tsx @@ -1,110 +1,117 @@ "use client"; -import React from 'react'; -import { useRouter } from 'next/navigation'; import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from '@/components/navbar/NavbarStyleCentered/NavbarStyleCentered'; import FooterSimple from '@/components/sections/footer/FooterSimple'; -import Link from 'next/link'; +import ButtonBounceEffect from '@/components/button/ButtonBounceEffect/ButtonBounceEffect'; +import { useRouter } from 'next/navigation'; +import { Lock, CreditCard } from "lucide-react"; export default function PaymentPage() { const router = useRouter(); - const handleFlutterwavePayment = () => { - // In a real application, you would integrate Flutterwave SDK here - // This is a placeholder for demonstration purposes. - console.log('Initiating Flutterwave payment for $60...'); - alert('Simulating Flutterwave payment... Success!\nRedirecting to confirmation page.'); + const handlePayment = () => { + // Simulate Flutterwave payment processing + alert('Processing payment via Flutterwave...'); + // On successful payment, redirect to confirmation page router.push('/confirmation'); }; - const footerColumns = [ - { - title: "Company", items: [ - { label: "About Us", href: "/#about" }, - { label: "Our Services", href: "/#services" }, - { label: "Executive Team", href: "/#team" }, - { label: "Properties", href: "/#properties" }, - { label: "Contact", href: "/#contact" } - ] - }, - { - title: "Resources", items: [ - { label: "Investment Guide", href: "#" }, - { label: "Market Reports", href: "#" }, - { label: "FAQ", href: "#" }, - { label: "Blog", href: "#" } - ] - }, - { - title: "Legal", items: [ - { label: "Privacy Policy", href: "#" }, - { label: "Terms of Service", href: "#" }, - { label: "Cookie Policy", href: "#" } - ] - }, - { - title: "Connect", items: [ - { label: "LinkedIn", href: "#" }, - { label: "Instagram", href: "#" }, - { label: "WhatsApp", href: "#" } - ] - } - ]; - - const themeProviderProps = { - defaultButtonVariant: "hover-magnetic", defaultTextAnimation: "entrance-slide", borderRadius: "pill", contentWidth: "mediumSmall", sizing: "mediumLarge", background: "none", cardStyle: "glass-elevated", primaryButtonStyle: "primary-glow", secondaryButtonStyle: "radial-glow", headingFontWeight: "medium"}; - - const navbarProps = { - brandName: "Luxe Properties", navItems: [ - { name: "Properties", id: "properties" }, - { name: "About", id: "about" }, - { name: "Services", id: "services" }, - { name: "Team", id: "team" }, - { name: "Testimonials", id: "testimonials" }, - { name: "Application", href: "/application-form" }, - { name: "Contact", id: "contact" } - ], - button: { text: "Schedule Viewing", href: "#contact" } - }; - return ( - + -
-
-

Secure Payment

-

- Your application requires a non-refundable fee. +

+
+ +

Secure Payment

+

+ Complete your payment securely via Flutterwave. A fee of $60 will be applied.

-
- $60.00 +
+ +

+ + Your transaction is secured with 256-bit encryption. +

-

- Powered by Flutterwave for secure and reliable transactions. -

- - - ← Back to Application Form -
-
+
); -} +} \ No newline at end of file