Initial commit

This commit is contained in:
John Wang
2023-05-15 08:51:32 +08:00
commit db896255d6
744 changed files with 56028 additions and 0 deletions

18
web/app/page.tsx Normal file
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 flex-col justify-center min-h-screen 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