20 lines
398 B
TypeScript
20 lines
398 B
TypeScript
import './globals.css';
|
|
import type { Metadata } from 'next';
|
|
|
|
export const metadata: Metadata = {
|
|
title: 'Boardware Genius',
|
|
description: '个人 AI 助手',
|
|
};
|
|
|
|
export default function RootLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<html lang="zh-CN" className="dark">
|
|
<body className="bg-background text-foreground">{children}</body>
|
|
</html>
|
|
);
|
|
}
|