import type { Metadata, Viewport } from "next"; import { Geist, Geist_Mono, Noto_Sans_SC, Ma_Shan_Zheng, Long_Cang } from "next/font/google"; import localFont from "next/font/local"; import "./globals.css"; import { Suspense } from "react"; import { ThemeProvider } from "@/contexts/theme-context"; import { GoogleAnalytics } from "@/components/analytics/GoogleAnalytics"; import { CookieConsent } from "@/components/analytics/CookieConsent"; import { PerformanceTracker } from "@/components/analytics/PerformanceTracker"; import { OutboundLinkTracker } from "@/components/analytics/OutboundLinkTracker"; import { OrganizationSchema, WebsiteSchema } from "@/components/seo/structured-data"; import { MobileTabBar } from "@/components/layout/mobile-tab-bar"; import { ErrorBoundary } from "@/components/ui/error-boundary"; import { ScrollProgress } from "@/components/ui/scroll-progress"; import { BackToTop } from "@/components/ui/back-to-top"; const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], display: "swap", preload: false, }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], display: "swap", preload: false, }); const notoSansSC = Noto_Sans_SC({ weight: ["400", "500", "700"], variable: "--font-noto-sans-sc", subsets: ["latin"], display: "swap", preload: true, }); const maShanZheng = Ma_Shan_Zheng({ weight: "400", variable: "--font-ma-shan-zheng", subsets: ["latin"], display: "swap", preload: false, }); const longCang = Long_Cang({ weight: "400", variable: "--font-long-cang", subsets: ["latin"], display: "swap", preload: false, }); const aoyagiReisho = localFont({ src: "./fonts/AoyagiReisho.ttf", variable: "--font-aoyagi-reisho", display: "swap", preload: true, }); export const metadata: Metadata = { metadataBase: new URL("https://www.novalon.cn"), title: { default: "四川睿新致远科技有限公司 - 企业数字化转型服务商", template: "%s | 四川睿新致远科技有限公司", }, description: "四川睿新致远科技有限公司成立于2026年,专注于企业数字化转型服务,提供软件开发、云计算、数据分析、信息安全等一站式解决方案。", keywords: ["数字化转型", "企业软件", "ERP系统", "CRM系统", "云计算", "数据分析", "软件开发", "成都科技公司", "金融科技", "诺瓦隆"], authors: [{ name: "四川睿新致远科技有限公司" }], creator: "四川睿新致远科技有限公司", publisher: "四川睿新致远科技有限公司", robots: { index: true, follow: true, googleBot: { index: true, follow: true, "max-video-preview": -1, "max-image-preview": "large", "max-snippet": -1, }, }, openGraph: { type: "website", locale: "zh_CN", url: "https://www.novalon.cn", siteName: "四川睿新致远科技有限公司", title: "四川睿新致远科技有限公司 - 企业数字化转型服务商", description: "专注于企业数字化转型服务,提供软件开发、云计算、数据分析、信息安全等一站式解决方案", images: [ { url: "/og-image.jpg", width: 1200, height: 630, alt: "四川睿新致远科技有限公司", }, ], }, twitter: { card: "summary_large_image", title: "四川睿新致远科技有限公司 - 企业数字化转型服务商", description: "专注于企业数字化转型服务,提供软件开发、云计算、数据分析、信息安全等一站式解决方案", images: ["/og-image.jpg"], }, alternates: { canonical: "https://www.novalon.cn", }, verification: { google: "your-google-verification-code", }, }; export const viewport: Viewport = { width: "device-width", initialScale: 1, maximumScale: 5, themeColor: [ { media: "(prefers-color-scheme: light)", color: "#FFFFFF" }, { media: "(prefers-color-scheme: dark)", color: "#0A0A0A" }, ], }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{/* 字体预加载优化 */}