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>
14 lines
357 B
TypeScript
14 lines
357 B
TypeScript
import { OrderTracking } from '@/components/order-tracking'
|
|
|
|
export default function OrdersPage() {
|
|
return (
|
|
<div className="container mx-auto px-4 py-8">
|
|
<OrderTracking />
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export const metadata = {
|
|
title: 'Track Your Order | Rocky Mountain Vending',
|
|
description: 'Track your order status and view delivery information',
|
|
}
|