Files
asset-homepage/app/layout.tsx
2026-01-28 17:55:01 +08:00

59 lines
1.3 KiB
TypeScript

import type { Metadata } from "next";
import { Inter, JetBrains_Mono, Domine, Noto_Sans_SC, Noto_Serif_SC } from "next/font/google";
import "./globals.css";
import Providers from "@/components/Providers";
const inter = Inter({
subsets: ["latin"],
variable: "--font-inter",
display: "swap",
});
const jetbrainsMono = JetBrains_Mono({
subsets: ["latin"],
variable: "--font-jetbrains",
display: "swap",
});
const domine = Domine({
subsets: ["latin"],
variable: "--font-domine",
weight: ["400", "700"],
display: "swap",
});
const notoSansSC = Noto_Sans_SC({
subsets: ["latin"],
variable: "--font-noto-sans-sc",
weight: ["400", "500", "700"],
display: "swap",
});
const notoSerifSC = Noto_Serif_SC({
subsets: ["latin"],
variable: "--font-noto-serif-sc",
weight: ["400", "700"],
display: "swap",
});
export const metadata: Metadata = {
title: "Asset Homepage",
description: "Asset management platform homepage",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en" className={`${inter.variable} ${jetbrainsMono.variable} ${domine.variable} ${notoSansSC.variable} ${notoSerifSC.variable}`}>
<body className="antialiased">
<Providers>
{children}
</Providers>
</body>
</html>
);
}