Payment successful
Thank you! Your payment was received. Your tickets will be sent to you shortly. {contactEmail && ( <> {" "}If you have any questions, contact us at{" "} {contactEmail} . > )}
"use client"; import { Navbar } from "@/components/layout/Navbar"; import { Footer } from "@/components/layout/Footer"; import { useRouter } from "next/navigation"; import { useSiteSettings } from "@/contexts/SiteSettingsContext"; import { CheckCircle2 } from "lucide-react"; import React from "react"; export default function PaymentSuccessPage() { const router = useRouter(); const { settings } = useSiteSettings(); const contactEmail = settings.org_email || ""; return (
Thank you! Your payment was received. Your tickets will be sent to you shortly. {contactEmail && ( <> {" "}If you have any questions, contact us at{" "} {contactEmail} . > )}