17 lines
495 B
TypeScript
17 lines
495 B
TypeScript
import { Telescope } from 'lucide-react'
|
|
|
|
export function ComingSoon() {
|
|
return (
|
|
<div className='h-svh'>
|
|
<div className='m-auto flex h-full w-full flex-col items-center justify-center gap-2'>
|
|
<Telescope size={72} />
|
|
<h1 className='text-4xl leading-tight font-bold'>Coming Soon!</h1>
|
|
<p className='text-center text-muted-foreground'>
|
|
This page has not been created yet. <br />
|
|
Stay tuned though!
|
|
</p>
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|