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} );