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",
|
|
}
|