Files
cecilia/app/layout.tsx
2025-11-05 00:15:40 +09:00

42 lines
918 B
TypeScript

import type { Metadata } from "next";
import { Geist, Geist_Mono, Noto_Sans_JP } 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 notoSansJP = Noto_Sans_JP({
variable: "--font-noto-sans-jp",
subsets: ["latin"],
});
export const metadata: Metadata = {
title: "tuna2134",
description: "tuna2134 official website",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="ja">
<body
className={`${geistSans.variable} ${geistMono.variable} ${notoSansJP.variable} antialiased`}
>
{children}
</body>
</html>
);
}
export const dynamic = 'force-dynamic'