mirror of
https://git.mirrors.martin98.com/https://github.com/langgenius/dify.git
synced 2025-04-22 21:59:55 +08:00

Co-authored-by: NFish <douxc512@gmail.com> Co-authored-by: zxhlyh <jasonapring2015@outlook.com> Co-authored-by: twwu <twwu@dify.ai> Co-authored-by: jZonG <jzongcode@gmail.com>
19 lines
447 B
TypeScript
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
|