您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

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