This commit is contained in:
freedakgmail
2025-11-22 20:18:26 +08:00
parent 33cf0c50d1
commit b83382b604
34 changed files with 83039 additions and 213 deletions
+13 -8
View File
@@ -1,4 +1,5 @@
import type React from "react"
import Link from "next/link"
import { Button } from "@/components/ui/button"
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
import { SiteHeader } from "@/components/site-header"
@@ -18,14 +19,18 @@ export default function DashboardPage() {
<p className="text-muted-foreground mt-1">西 · 24 </p>
</div>
<div className="flex gap-2">
<Button variant="outline" className="gap-2 bg-transparent">
<Network className="h-4 w-4" />
</Button>
<Button className="gap-2 bg-primary text-primary-foreground hover:bg-primary/90">
<UserPlus className="h-4 w-4" />
</Button>
<Link href="/tree">
<Button variant="outline" className="gap-2 bg-transparent">
<Network className="h-4 w-4" />
</Button>
</Link>
<Link href="/members/new">
<Button className="gap-2 bg-primary text-primary-foreground hover:bg-primary/90">
<UserPlus className="h-4 w-4" />
</Button>
</Link>
</div>
</div>