Files

37 lines
864 B
TypeScript
Raw Permalink Normal View History

2026-04-29 19:06:38 +08: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 = {
title: "Create Next App",
description: "Generated by create next app",
};
export default function RootLayout({
children,
}: Readonly<{
children: React.ReactNode;
}>) {
return (
<html
2026-05-06 17:22:50 +08:00
lang="zh-CN"
2026-04-29 19:06:38 +08:00
className={`${geistSans.variable} ${geistMono.variable} h-full antialiased`}
>
2026-05-06 17:22:50 +08:00
<head>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css" />
</head>
2026-04-29 19:06:38 +08:00
<body className="min-h-full flex flex-col">{children}</body>
</html>
);
}