coming-soon.tsx 516 B

12345678910111213141516
  1. import { IconPlanet } from '@tabler/icons-react'
  2. export default function ComingSoon() {
  3. return (
  4. <div className='h-svh'>
  5. <div className='m-auto flex h-full w-full flex-col items-center justify-center gap-2'>
  6. <IconPlanet size={72} />
  7. <h1 className='text-4xl font-bold leading-tight'>Coming Soon 👀</h1>
  8. <p className='text-center text-muted-foreground'>
  9. This page has not been created yet. <br />
  10. Stay tuned though!
  11. </p>
  12. </div>
  13. </div>
  14. )
  15. }