first commit
This commit is contained in:
14
app/admin/products/new/page.tsx
Normal file
14
app/admin/products/new/page.tsx
Normal file
@@ -0,0 +1,14 @@
|
||||
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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user