This commit is contained in:
2025-12-29 17:29:51 +07:00
parent 1bb5ad52ed
commit bf063f244c
14 changed files with 2922 additions and 66 deletions

16
src/app/cart/page.tsx Normal file
View File

@@ -0,0 +1,16 @@
import React from 'react';
import HomeCart from '@/components/Cart/Home';
import { Metadata } from 'next';
export const metadata: Metadata = {
title: 'Thông tin giỏ hàng',
description: 'Xem các sản phẩm đã thêm vào trong giỏ hàng',
};
export default function CartPage() {
return (
<>
<HomeCart />
</>
);
}