-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpage.tsx
More file actions
34 lines (32 loc) · 1019 Bytes
/
page.tsx
File metadata and controls
34 lines (32 loc) · 1019 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import { AddAssetForm } from "@/components/forms/add-asset-form"
import { Card, CardContent, CardDescription, CardHeader, CardTitle } from "@/components/ui/card"
import { Button } from "@/components/ui/button"
import { ArrowLeft, Plus } from "lucide-react"
import Link from "next/link"
export default function AssetsPage() {
return (
<div className="container mx-auto py-6">
<div className="mb-6">
<Button variant="ghost" asChild>
<Link href="/dashboard">
<ArrowLeft className="mr-2 h-4 w-4" />
Back to Dashboard
</Link>
</Button>
</div>
<div className="max-w-2xl mx-auto">
<Card>
<CardHeader>
<CardTitle>Add New Asset</CardTitle>
<CardDescription>
Track your valuable possessions and cash holdings
</CardDescription>
</CardHeader>
<CardContent>
<AddAssetForm />
</CardContent>
</Card>
</div>
</div>
)
}