"use client"; import { useEffect } from "react"; import Link from "next/link"; import { getSpaceIdFromCookie, getCartKey } from "@/lib/spaces"; export default function CheckoutSuccessPage() { useEffect(() => { // Clear cart after successful payment const cartKey = getCartKey(getSpaceIdFromCookie()); localStorage.removeItem(cartKey); }, []); return (
Thank you for your purchase. Your order is being processed and you'll receive a confirmation email shortly.
Continue Shopping