From af51ee4447e5d50468bd54be14149d91c2416175 Mon Sep 17 00:00:00 2001 From: tuyenio Date: Tue, 23 Jun 2026 10:57:03 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20layout=20g=E1=BB=91c=20d=C3=B9ng=20Noto?= =?UTF-8?q?=20Sans=20ti=E1=BA=BFng=20Vi=E1=BB=87t,=20metadata=20Nh=C6=B0?= =?UTF-8?q?=20Qu=E1=BB=B3nh?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/app/layout.tsx | 31 +++++++++++++++---------------- 1 file changed, 15 insertions(+), 16 deletions(-) diff --git a/src/app/layout.tsx b/src/app/layout.tsx index 976eb90..6245827 100644 --- a/src/app/layout.tsx +++ b/src/app/layout.tsx @@ -1,20 +1,22 @@ -import type { Metadata } from "next"; -import { Geist, Geist_Mono } from "next/font/google"; +import type { Metadata, Viewport } from "next"; +import { Noto_Sans } from "next/font/google"; import "./globals.css"; -const geistSans = Geist({ - variable: "--font-geist-sans", - subsets: ["latin"], -}); - -const geistMono = Geist_Mono({ - variable: "--font-geist-mono", - subsets: ["latin"], +const notoSans = Noto_Sans({ + subsets: ["latin", "vietnamese"], + variable: "--font-noto-sans", + weight: ["400", "500", "600", "700", "800"], }); export const metadata: Metadata = { - title: "Create Next App", - description: "Generated by create next app", + title: "VR360 Di sản Xã Như Quỳnh", + description: + "Cổng số hóa di tích, không gian văn hóa và giá trị truyền thống của Xã Như Quỳnh, tỉnh Hưng Yên bằng công nghệ tham quan thực tế ảo VR360.", +}; + +export const viewport: Viewport = { + width: "device-width", + initialScale: 1, }; export default function RootLayout({ @@ -23,10 +25,7 @@ export default function RootLayout({ children: React.ReactNode; }>) { return ( - + {children} );