Vocal-rank/app/layout.tsx
mei 6f4c6e8854 feat(layout): 更换加速地址
- 更新网站标题和描述,添加关键词
- 更新 API 请求地址
2025-02-10 14:53:52 +08:00

30 lines
945 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import type { Metadata } from "next"
import { Inter } from "next/font/google"
import "./globals.css"
import type React from "react"
const inter = Inter({ subsets: ["latin"] })
export const metadata: Metadata = {
title: "Vocal Rank - 中V数据查询器基于 NineVocalRank",
description: "Vocal Rank - 中V数据查询器基于 NineVocalRank",
keywords: ['Vocal Rank', 'NineVocalRank', 'Vocaloid', '中V', 'VC', '中V数据查询器', '周刊虚拟歌手中文曲', '洛天依', '乐正绫'],
}
export default function RootLayout({
children,
}: {
children: React.ReactNode
}) {
return (
<html lang="zh" suppressHydrationWarning>
<head>
<meta name="referrer" content="no-referrer" />
<script defer src="https://umami.mmeiblog.cn/script.js" data-website-id="157306a2-e1eb-4571-9d19-0d4b2c28eddd"></script>
</head>
<body className={inter.className}>{children}</body>
</html>
)
}