coming-soon.tsx 503 B

12345678910111213141516
  1. import { Telescope } from 'lucide-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. <Telescope size={72} />
  7. <h1 className='text-4xl leading-tight font-bold'>Coming Soon!</h1>
  8. <p className='text-muted-foreground text-center'>
  9. This page has not been created yet. <br />
  10. Stay tuned though!
  11. </p>
  12. </div>
  13. </div>
  14. )
  15. }