update
This commit is contained in:
16
src/app/cart/page.tsx
Normal file
16
src/app/cart/page.tsx
Normal 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 />
|
||||
</>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user