short-url/app/page.tsx

24 lines
863 B
TypeScript
Raw Normal View History

2024-11-26 12:45:06 +08:00
import ShortUrlForm from '@/components/ShortUrlForm'
export default function Home() {
return (
<main className="flex min-h-screen flex-col items-center justify-center bg-gradient-to-r from-cyan-500 to-blue-500 p-4">
<div className="w-full max-w-md">
<h1 className="mb-8 text-center text-4xl font-bold text-white">URL Shortener</h1>
<ShortUrlForm />
<div className="mt-8 text-center text-sm text-white">
2024-11-27 13:10:36 +08:00
<p>使<a href="https://www.rainyun.com/cat_"></a></p>
<p> cat ,</p>
2024-11-26 12:45:06 +08:00
<p className="mt-2">
2024-11-27 13:10:36 +08:00
{' '}
2024-11-30 13:00:54 +08:00
<a href="mailto:i@mei.lv" className="underline">
i@mei.lv
2024-11-26 12:45:06 +08:00
</a>
</p>
</div>
</div>
</main>
)
}