15 lines
375 B
TypeScript
15 lines
375 B
TypeScript
import { ProductForm } from '@/components/admin/ProductForm'
|
|
|
|
export default function NewProductPage() {
|
|
return (
|
|
<div className="space-y-6">
|
|
<div>
|
|
<h1 className="text-3xl font-bold text-gray-900">Add New Product</h1>
|
|
<p className="text-gray-600">Create a new product in your catalog</p>
|
|
</div>
|
|
|
|
<ProductForm />
|
|
</div>
|
|
)
|
|
}
|