update fix

This commit is contained in:
2025-12-19 11:32:50 +07:00
parent 47f154b326
commit e8d0ee3452
8 changed files with 67 additions and 43 deletions

View File

@@ -1,28 +0,0 @@
import type { Metadata } from 'next';
import '../styles/sf-pro-display.css';
import 'swiper/css';
import 'swiper/css/navigation';
import 'swiper/css/pagination';
import '../styles/globals.css';
import Header from '@/src/components/layout/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>
);
}