| 123456789101112131415161718192021222324252627 |
- import type { Metadata } from "next";
- import "./globals.css";
- import { SiteHeader } from "@/components/site-header";
- export const metadata: Metadata = {
- title: "局域网书房",
- description: "一个同时包含局域网聊天和书架阅读的网站骨架。",
- other: {
- "theme-color": "#f4efe7"
- }
- };
- export default function RootLayout({
- children
- }: Readonly<{
- children: React.ReactNode;
- }>) {
- return (
- <html lang="zh-CN">
- <body>
- <SiteHeader />
- {children}
- </body>
- </html>
- );
- }
|