import type { Metadata } from "next"; import { Geist, Geist_Mono, Orbitron } from "next/font/google"; // v0.13 调研 7-B 落地:自托管科幻/终端字体(SIL OFL,可商用) import "@fontsource/share-tech-mono"; // 科技等宽 → 数据/坐标显示 import "@fontsource/vt323"; // 终端绿字风 → 脉冲低语/考古日志 import "./globals.css"; import { Toaster } from "@/components/ui/toaster"; const geistSans = Geist({ variable: "--font-geist-sans", subsets: ["latin"], }); const geistMono = Geist_Mono({ variable: "--font-geist-mono", subsets: ["latin"], }); // v0.10.1 调研落地:Orbitron 科幻显示字体(用于标题/数值/全息UI) const orbitron = Orbitron({ variable: "--font-display", subsets: ["latin"], weight: ["400", "500", "600", "700", "900"], display: "swap", }); export const metadata: Metadata = { title: "回响星核 · Echo Nexus", description: "原创深空考古放置策略游戏 — 解码记忆晶体,拼凑以太文明的回响,跨越维度发起接触。", keywords: ["Echo Nexus", "回响星核", "idle game", "browser game", "放置游戏", "解谜", "深空考古"], authors: [{ name: "Super_Z" }], icons: { icon: "https://z-cdn.chatglm.cn/z-ai/static/logo.svg", }, openGraph: { title: "回响星核 · Echo Nexus", description: "原创深空考古放置策略游戏", siteName: "Echo Nexus", type: "website", }, twitter: { card: "summary_large_image", title: "回响星核 · Echo Nexus", description: "原创深空考古放置策略游戏", }, }; export default function RootLayout({ children, }: Readonly<{ children: React.ReactNode; }>) { return (
{children}