Initialized repository for project PDF translation interface

Co-authored-by: 李忠軒 <2166216+aken1023@users.noreply.github.com>
This commit is contained in:
v0
2025-10-15 12:45:05 +00:00
commit 2d91f707ae
25 changed files with 4477 additions and 0 deletions

15
app/page.tsx Normal file
View File

@@ -0,0 +1,15 @@
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>
)
}