commerce/components/orders/orders-header.tsx
Chloe b2efb59f5c
feat: add activate warranty form
Signed-off-by: Chloe <pinkcloudvnn@gmail.com>
2024-06-24 22:28:06 +07:00

17 lines
505 B
TypeScript

const OrdersHeader = () => {
return (
<div className="mx-auto max-w-7xl sm:px-2 lg:px-8">
<div className="mx-auto max-w-2xl px-4 lg:max-w-4xl lg:px-0">
<h1 className="text-2xl font-bold tracking-tight text-gray-900 sm:text-3xl">
Order history
</h1>
<p className="mt-2 text-sm text-gray-500">
Check the status of recent orders, manage returns, and discover similar products.
</p>
</div>
</div>
);
};
export default OrdersHeader;