ifixkart-storefront/app/shop/page.tsx

9 lines
262 B
TypeScript

/**
* @page Shop Page Route (`app/shop/page.tsx`)
* @purpose Renders full e-commerce product catalog page for /shop and /shop?category=... URLs.
*/
import CatalogPage from '../products/page';
export default function ShopRoute() {
return <CatalogPage />;
}