products and product/slug page done

This commit is contained in:
nabijonovdavronbek619@gmail.com
2026-01-26 19:13:57 +05:00
parent bf6f38edab
commit 4a67425a6b
12 changed files with 422 additions and 2 deletions

11
app/products/page.tsx Normal file
View File

@@ -0,0 +1,11 @@
import { ProductBanner, Products } from "@/components/pages/products";
import React from "react";
export default function Page() {
return (
<div className="mb-90">
<ProductBanner />
<Products />
</div>
);
}