short-url/app/page.tsx
2024-11-30 13:00:54 +08:00

24 lines
863 B
TypeScript
Executable File
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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">
<p>使<a href="https://www.rainyun.com/cat_"></a></p>
<p> cat ,</p>
<p className="mt-2">
{' '}
<a href="mailto:i@mei.lv" className="underline">
i@mei.lv
</a>
</p>
</div>
</div>
</main>
)
}