Update link in event themes page to correct path

Fixed the href value in the "Create Your First Theme" button to point to the correct `/dashboard/event-themes/new` route. This ensures proper navigation and resolves potential routing issues.
This commit is contained in:
2025-03-13 08:36:11 +01:00
parent d9e9a88ea1
commit f2f8d85775

View File

@@ -52,7 +52,9 @@ export default function EventThemesPage() {
You haven't created any theme yet.
</p>
<Button asChild className="mt-4">
<Link href="/dashboard/events/new">Create Your First Theme</Link>
<Link href="/dashboard/event-themes/new">
Create Your First Theme
</Link>
</Button>
</div>
)}