Files
juwan-frontend/app/(main)/terms/page.tsx
T
2026-04-25 21:36:29 +08:00

56 lines
2.5 KiB
TypeScript
Raw 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 { Badge } from "@/components/ui/badge"
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
import Link from "next/link"
export default function TermsPage() {
return (
<div className="container mx-auto max-w-3xl px-4 py-8 space-y-6">
<div className="space-y-3">
<Badge variant="outline" className="w-fit text-xs font-normal">
</Badge>
<div className="space-y-2">
<h1 className="text-2xl font-bold tracking-tight leading-tight"></h1>
<p className="text-sm leading-relaxed text-muted-foreground">
</p>
</div>
</div>
<Card className="overflow-hidden border-border/80 shadow-sm">
<CardHeader className="border-b border-border/60">
<CardTitle className="text-base"></CardTitle>
</CardHeader>
<CardContent className="p-0 text-sm leading-relaxed text-muted-foreground">
<section className="border-b border-border/60 p-5">
<h2 className="text-sm font-semibold text-foreground"></h2>
<p className="mt-2">便</p>
</section>
<section className="border-b border-border/60 p-5">
<h2 className="text-sm font-semibold text-foreground"></h2>
<p className="mt-2"></p>
</section>
<section className="border-b border-border/60 p-5">
<h2 className="text-sm font-semibold text-foreground"></h2>
<p className="mt-2"></p>
</section>
<section className="border-b border-border/60 p-5">
<h2 className="text-sm font-semibold text-foreground"></h2>
<p className="mt-2">访</p>
</section>
<section className="p-5">
<h2 className="text-sm font-semibold text-foreground"></h2>
<p className="mt-2">
<Link href="/privacy" className="text-primary hover:underline">
</Link>
</p>
</section>
</CardContent>
</Card>
</div>
)
}