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
+3 -3
View File
@@ -30,13 +30,13 @@ export function Footer() {
<div>
<h3 className="font-semibold text-sm mb-3"></h3>
<nav className="flex flex-col gap-2 text-sm text-muted-foreground">
<Link href="#" className="hover:text-foreground transition-colors">
<Link href="/help" className="hover:text-foreground transition-colors">
</Link>
<Link href="#" className="hover:text-foreground transition-colors">
<Link href="/terms" className="hover:text-foreground transition-colors">
</Link>
<Link href="#" className="hover:text-foreground transition-colors">
<Link href="/privacy" className="hover:text-foreground transition-colors">
</Link>
</nav>