Files
AI_Translator/apps/web/app/page.tsx
2025-12-26 16:03:12 +08:00

25 lines
894 B
TypeScript
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 TranslatorForm from '@/components/TranslatorForm'
export default function Home() {
return (
<main className="min-h-screen bg-background">
<div className="container mx-auto px-4 py-8 md:py-16">
<div className="flex flex-col items-center mb-12 space-y-4">
<h1 className="text-4xl md:text-5xl font-extrabold tracking-tight text-foreground">
AI
</h1>
<p className="text-muted-foreground text-lg text-center max-w-2xl">
</p>
</div>
<TranslatorForm />
<footer className="mt-16 text-center text-sm text-muted-foreground">
<p>&copy; {new Date().getFullYear()} AI Translator. Powered by Next.js & FastAPI.</p>
</footer>
</div>
</main>
)
}