0.0.0.4
This commit is contained in:
+12
-1
@@ -4,6 +4,7 @@ import { Geist, Geist_Mono } from "next/font/google"
|
||||
import { Analytics } from "@vercel/analytics/next"
|
||||
import "./globals.css"
|
||||
import { FamilyProvider } from "@/context/family-context"
|
||||
import { PWAProvider } from "@/components/pwa/pwa-provider"
|
||||
|
||||
const _geist = Geist({ subsets: ["latin"] })
|
||||
const _geistMono = Geist_Mono({ subsets: ["latin"] })
|
||||
@@ -12,6 +13,12 @@ export const metadata: Metadata = {
|
||||
title: "华夏谱 (HuaXiaPu) - 家族树管理系统",
|
||||
description: "现代中国家族树管理系统",
|
||||
generator: "v0.app",
|
||||
manifest: "/manifest.json",
|
||||
appleWebApp: {
|
||||
capable: true,
|
||||
statusBarStyle: "default",
|
||||
title: "华夏谱",
|
||||
},
|
||||
icons: {
|
||||
icon: [
|
||||
{
|
||||
@@ -39,7 +46,11 @@ export default function RootLayout({
|
||||
return (
|
||||
<html lang="zh-CN">
|
||||
<body className={`font-sans antialiased`}>
|
||||
<FamilyProvider>{children}</FamilyProvider>
|
||||
<FamilyProvider>
|
||||
<PWAProvider>
|
||||
{children}
|
||||
</PWAProvider>
|
||||
</FamilyProvider>
|
||||
<Analytics />
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user