This commit is contained in:
2025-12-24 17:05:16 +07:00
parent 423a68f410
commit 9072f84681
16 changed files with 389 additions and 133 deletions

17
src/app/page.tsx Normal file
View File

@@ -0,0 +1,17 @@
import React from 'react';
import Home from '@components/layout/home';
import { Metadata } from 'next';
export const metadata: Metadata = {
title: 'Nguyễn Công PC - Cửa Hàng Máy Tính PC Đồ Hoạ - PC Gaming chuyên nghiệp',
description:
'Mua máy tính đồ họa, PC gaming, máy tính văn phòng, laptop gaming, PC AI, Build PC, CPU, VGA, màn hình máy tính chính hãng tại Nguyễn Công PC giá rẻ nhất - Giảm giá 50%',
};
export default function Homepage() {
return (
<>
<Home />
</>
);
}