first commit

This commit is contained in:
2026-01-17 14:17:42 +05:30
commit 0f194eb9e7
328 changed files with 73544 additions and 0 deletions

View 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>
)
}