Files
dify/web/app/page.tsx
T
7709d9df20 Chore: frontend infrastructure upgrade (#16420)
Co-authored-by: NFish <[email protected]>
Co-authored-by: zxhlyh <[email protected]>
Co-authored-by: twwu <[email protected]>
Co-authored-by: jZonG <[email protected]>
2025-03-21 17:41:03 +08:00

19 lines
447 B
TypeScript

import Link from 'next/link'
import Loading from '@/app/components/base/loading'
const Home = async () => {
return (
<div className="flex min-h-screen flex-col justify-center py-12 sm:px-6 lg:px-8">
<div className="sm:mx-auto sm:w-full sm:max-w-md">
<Loading type='area' />
<div className="mt-10 text-center">
<Link href='/apps'>🚀</Link>
</div>
</div>
</div>
)
}
export default Home