mirror of
https://github.com/VaalaCat/frp-panel.git
synced 2025-10-10 17:50:22 +08:00
15 lines
370 B
TypeScript
15 lines
370 B
TypeScript
import { Providers } from '@/components/providers'
|
|
import { RootLayout } from '@/components/layout'
|
|
import { Header } from '@/components/header'
|
|
import PlatformInfo from '@/components/platforminfo'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<Providers>
|
|
<RootLayout mainHeader={<Header />}>
|
|
<PlatformInfo />
|
|
</RootLayout>
|
|
</Providers>
|
|
)
|
|
}
|