This commit is contained in:
2025-12-18 16:21:46 +07:00
parent cddf41be8b
commit afcf4c55b9
29 changed files with 12678 additions and 134 deletions

25
src/app/layout.tsx Normal file
View File

@@ -0,0 +1,25 @@
import type { Metadata } from 'next';
import '../styles/sf-pro-display.css';
import '../styles/globals.css';
import Header from '@components/layout/Header/Header';
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 RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html suppressHydrationWarning>
<body>
<Header />
{children}
</body>
</html>
);
}