page.tsx 447 B

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 flex-col justify-center min-h-screen 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