Next.js website for Rocky Mountain Vending company featuring: - Product catalog with Stripe integration - Service areas and parts pages - Admin dashboard with Clerk authentication - SEO optimized pages with JSON-LD structured data Co-authored-by: Cursor <cursoragent@cursor.com>
33 lines
1.1 KiB
TypeScript
33 lines
1.1 KiB
TypeScript
import Link from 'next/link'
|
|
import { Button } from '@/components/ui/button'
|
|
import { CheckCircle } from 'lucide-react'
|
|
|
|
export const metadata = {
|
|
title: 'Checkout Success | Rocky Mountain Vending',
|
|
description: 'Your order has been placed successfully',
|
|
}
|
|
|
|
export default function CheckoutSuccessPage() {
|
|
return (
|
|
<div className="container mx-auto px-4 py-16">
|
|
<div className="max-w-2xl mx-auto text-center">
|
|
<CheckCircle className="h-16 w-16 text-green-500 mx-auto mb-6" />
|
|
<h1 className="text-4xl md:text-5xl font-bold tracking-tight text-balance mb-4">Order Confirmed!</h1>
|
|
<p className="text-lg text-muted-foreground mb-8">
|
|
Thank you for your purchase. Your order has been received and we'll
|
|
be in touch soon regarding shipping and delivery details.
|
|
</p>
|
|
<div className="flex gap-4 justify-center">
|
|
<Button asChild variant="brand">
|
|
<Link href="/products">Continue Shopping</Link>
|
|
</Button>
|
|
<Button variant="outline" asChild>
|
|
<Link href="/">Back to Home</Link>
|
|
</Button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
|
|
|