Add draft implementation of gifts page
Some checks failed
Build and Push Docker Images / changes (push) Successful in 5s
Build and Push Docker Images / build-backend (push) Has been skipped
Build and Push Docker Images / build-frontend (push) Failing after 53s

This commit is contained in:
2025-03-16 17:10:29 +01:00
parent df1256996b
commit ac800e6356
2 changed files with 1 additions and 29 deletions

View File

@@ -234,34 +234,6 @@ export default function GiftRegistryPage() {
</div>
</header>
{/* Breadcrumb */}
<div className="flex items-center text-sm text-gray-500 dark:text-gray-400 mb-6">
<Link
href="/dashboard"
className="hover:text-blue-600 dark:hover:text-blue-400"
>
Dashboard
</Link>
<ChevronRight className="h-4 w-4 mx-1" />
<Link
href="/dashboard/events"
className="hover:text-blue-600 dark:hover:text-blue-400"
>
Events
</Link>
<ChevronRight className="h-4 w-4 mx-1" />
<Link
href={`/dashboard/events/${event.slug}`}
className="hover:text-blue-600 dark:hover:text-blue-400"
>
{event.title}
</Link>
<ChevronRight className="h-4 w-4 mx-1" />
<span className="font-medium text-gray-900 dark:text-gray-100">
Gift Registry
</span>
</div>
{/* Gift Registry Content */}
<div className="space-y-6">
<div className="flex items-center justify-between">

View File

@@ -339,7 +339,7 @@ export default function EventDetailPage() {
</CardHeader>
<CardFooter>
<Button variant="outline" asChild className="w-full">
<Link href={`/events/${event.slug}/gifts`}>
<Link href={`/dashboard/events/${event.slug}/gifts`}>
Edit Gift Registry
</Link>
</Button>