feat(pages): add help, terms, privacy pages and footer links

This commit is contained in:
zetaloop
2026-02-22 08:03:27 +08:00
parent 312061330c
commit 76df8a6f56
4 changed files with 78 additions and 3 deletions
+27
View File
@@ -0,0 +1,27 @@
import Link from "next/link"
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
export default function HelpPage() {
return (
<div className="container mx-auto max-w-3xl px-4 py-8 space-y-6">
<h1 className="text-2xl font-bold"></h1>
<Card>
<CardHeader>
<CardTitle className="text-base"></CardTitle>
</CardHeader>
<CardContent className="space-y-2 text-sm text-muted-foreground">
<p>1. </p>
<p>2. </p>
<p>3. </p>
<p>
<Link href="/terms" className="text-primary hover:underline">
</Link>
</p>
</CardContent>
</Card>
</div>
)
}
+20
View File
@@ -0,0 +1,20 @@
import { Card, CardContent, CardHeader, CardTitle } from "@/components/ui/card"
export default function PrivacyPage() {
return (
<div className="container mx-auto max-w-3xl px-4 py-8 space-y-6">
<h1 className="text-2xl font-bold"></h1>
<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>
</CardContent>
</Card>
</div>
)
}
+28
View File
@@ -0,0 +1,28 @@
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"></h1>
<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>
)
}