15 lines
354 B
TypeScript
15 lines
354 B
TypeScript
import TranslatorForm from '@/components/TranslatorForm'
|
|
|
|
export default function Home() {
|
|
return (
|
|
<main className="min-h-screen bg-gray-50">
|
|
<div className="container mx-auto px-4 py-8">
|
|
<h1 className="text-3xl font-bold text-center mb-8">
|
|
AI 翻译
|
|
</h1>
|
|
<TranslatorForm />
|
|
</div>
|
|
</main>
|
|
)
|
|
}
|