first-update

This commit is contained in:
2026-03-17 14:36:31 +08:00
parent 72f08aee7c
commit 4eddf05e79
516 changed files with 115270 additions and 1 deletions

View File

@@ -0,0 +1,30 @@
import './globals.css';
import ThemeRegistry from '@/components/ThemeRegistry';
import I18nProvider from '@/components/I18nProvider';
import { Toaster } from 'sonner';
import { Provider } from 'jotai';
export const metadata = {
title: 'Easy Dataset',
description: '一个强大的 LLM 数据集生成工具',
icons: {
icon: '/imgs/logo.ico' // 更新为正确的文件名
}
};
export default function RootLayout({ children }) {
return (
<html lang="zh" suppressHydrationWarning>
<body suppressHydrationWarning>
<Provider>
<ThemeRegistry>
<I18nProvider>
{children}
<Toaster richColors position="top-right" duration={1000} />
</I18nProvider>
</ThemeRegistry>
</Provider>
</body>
</html>
);
}