28 lines
1.0 KiB
TypeScript
28 lines
1.0 KiB
TypeScript
export default function ComingSoon() {
|
|
return (
|
|
<div className="flex min-h-screen flex-col items-center justify-center bg-white px-4 text-center">
|
|
<div className="max-w-2xl space-y-5">
|
|
<div className="grid space-y-3 items-center justify-center">
|
|
<h1 className="ml-2 text-6xl text-black font-bold">Video² AI</h1>
|
|
|
|
<div className="space-y-1" data-nosnippet="true">
|
|
<div className="inline-block rounded-full bg-neutral-100 px-3 py-1 text-sm font-medium text-neutral-700">
|
|
Coming Soon
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div className="space-y-3">
|
|
<h2 className="mx-auto max-w-lg text-gray-500 text-2xl">
|
|
We amplify the power of video creation for everyone</h2>
|
|
|
|
<p className="text-neutral-600 font-medium">video2.ai</p>
|
|
</div>
|
|
</div>
|
|
|
|
<footer className="absolute bottom-4 text-sm text-gray-400">© {new Date().getFullYear()} Video² AI</footer>
|
|
</div>
|
|
)
|
|
}
|