16 lines
561 B
TypeScript
16 lines
561 B
TypeScript
import { PDFTranslator } from "@/components/pdf-translator"
|
||
|
||
export default function Home() {
|
||
return (
|
||
<main className="min-h-screen bg-background py-12 px-4">
|
||
<div className="max-w-4xl mx-auto">
|
||
<div className="text-center mb-12">
|
||
<h1 className="text-4xl font-bold text-foreground mb-3 text-balance">PDF 多國語言翻譯工具</h1>
|
||
<p className="text-lg text-muted-foreground text-balance">上傳您的PDF文件,輕鬆翻譯成多種語言</p>
|
||
</div>
|
||
<PDFTranslator />
|
||
</div>
|
||
</main>
|
||
)
|
||
}
|