28 lines
572 B
TypeScript
28 lines
572 B
TypeScript
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",
|
|
description: "Vocal Rank",
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode
|
|
}) {
|
|
return (
|
|
<html lang="zh" suppressHydrationWarning>
|
|
<head>
|
|
<meta name="referrer" content="no-referrer" />
|
|
</head>
|
|
<body className={inter.className}>{children}</body>
|
|
</html>
|
|
)
|
|
}
|
|
|