ghost-chess/app/layout.tsx

38 lines
737 B
TypeScript
Raw Permalink Normal View History

2025-05-31 00:21:33 +09:00
import type { Metadata } from "next";
import { Geist, Geist_Mono } 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"],
});
export const metadata: Metadata = {
2025-06-01 02:03:34 +00:00
title: "도남매's 체스",
description: "도남매를 위한 체스 게임",
2025-05-31 21:54:40 +09:00
icons: {
icon: "/logo.png",
}
2025-05-31 00:21:33 +09:00
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html lang="en">
<body
className={`${geistSans.variable} ${geistMono.variable} antialiased`}
>
{children}
</body>
</html>
);
}