Files
juwan-frontend/app/(main)/terms/page.tsx
T

29 lines
1.1 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 Link from "next/link"
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
export default function TermsPage() {
return (
<div className="container mx-auto max-w-3xl px-4 py-8 space-y-6">
<h1 className="text-2xl font-bold tracking-tighter leading-tight"></h1>
<Card className="hover:shadow-[var(--shadow-card)]">
<CardHeader>
<CardTitle className="text-base"></CardTitle>
</CardHeader>
<CardContent className="space-y-2 text-sm text-muted-foreground">
<p>便</p>
<p></p>
<p></p>
<p>访</p>
<p>
<Link href="/privacy" className="text-primary hover:underline">
</Link>
</p>
</CardContent>
</Card>
</div>
)
}