feat: layout gốc dùng Noto Sans tiếng Việt, metadata Như Quỳnh

This commit is contained in:
tuyenio
2026-06-23 10:57:03 +07:00
parent 1f79c8b37d
commit af51ee4447
+15 -16
View File
@@ -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 (
<html
lang="en"
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
>
<html lang="vi" className={`${notoSans.variable} h-full antialiased`}>
<body className="min-h-full flex flex-col">{children}</body>
</html>
);