Files

16 lines
561 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 { 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>
)
}