mirror of
https://github.com/handsomezhuzhu/personal-navigation-site.git
synced 2026-02-20 11:46:55 +00:00
34 lines
873 B
TypeScript
34 lines
873 B
TypeScript
import type React from "react"
|
|
import type { Metadata } from "next"
|
|
import { Geist, Geist_Mono } from "next/font/google"
|
|
import { Analytics } from "@vercel/analytics/next"
|
|
import "./globals.css"
|
|
|
|
const _geist = Geist({ subsets: ["latin"] })
|
|
const _geistMono = Geist_Mono({ subsets: ["latin"] })
|
|
|
|
export const metadata: Metadata = {
|
|
title: "站点导航 | zhuzihan.com",
|
|
description: "个人站点导航与管理中心",
|
|
generator: "v0.app",
|
|
icons: {
|
|
icon: "/images/e5-be-ae-e4-bf-a1-e5-9b-be-e7-89-87-20241017130915.jpg",
|
|
apple: "/images/e5-be-ae-e4-bf-a1-e5-9b-be-e7-89-87-20241017130915.jpg",
|
|
},
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode
|
|
}>) {
|
|
return (
|
|
<html lang="zh-CN">
|
|
<body className={`font-sans antialiased`}>
|
|
{children}
|
|
<Analytics />
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|