35 lines
890 B
TypeScript
35 lines
890 B
TypeScript
import type { Metadata } from 'next'
|
|
import { Inter, Noto_Sans_SC } from 'next/font/google'
|
|
import './globals.css'
|
|
|
|
const inter = Inter({
|
|
subsets: ['latin'],
|
|
variable: '--font-inter',
|
|
weight: ['400', '500', '600', '700'],
|
|
display: 'swap',
|
|
})
|
|
|
|
const notoSC = Noto_Sans_SC({
|
|
subsets: ['latin'],
|
|
variable: '--font-noto-sc',
|
|
weight: ['400', '500', '600', '700'],
|
|
display: 'swap',
|
|
})
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'MeetNote · 会议转写总结',
|
|
description: '手机录音一键上传,云端 Whisper 转写 + Claude 总结,中英混说精准。',
|
|
}
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: Readonly<{ children: React.ReactNode }>) {
|
|
return (
|
|
<html lang="zh-CN" suppressHydrationWarning>
|
|
<body className={`${inter.variable} ${notoSC.variable} font-sans`} suppressHydrationWarning>
|
|
{children}
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|