feat:新增dify1.11.1版本

This commit is contained in:
2025-12-15 15:38:42 +08:00
parent 2fb63ebf62
commit 9a846bbe13
7572 changed files with 1052887 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
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