mirror of
https://github.com/nagisa77/OpenIsle.git
synced 2026-08-14 15:21:00 +00:00
docs: 引入 Fumadocs
ci: set up github actions
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
import '@/app/global.css';
|
||||
import { Provider } from '@/app/provider';
|
||||
import { Inter } from 'next/font/google';
|
||||
|
||||
const inter = Inter({
|
||||
subsets: ['latin'],
|
||||
});
|
||||
|
||||
export default function Layout({ children }: LayoutProps<'/docs'>) {
|
||||
return (
|
||||
<html lang="zh" className={inter.className} suppressHydrationWarning>
|
||||
<body className="flex flex-col min-h-screen">
|
||||
<Provider>{children}</Provider>
|
||||
</body>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user