feat: add button to navigate to Funnels page in SiteDashboardPage for improved user navigation

This commit is contained in:
Usman Baig
2026-02-04 21:49:23 +01:00
parent e824b270af
commit 3f99bc81cc
5 changed files with 712 additions and 0 deletions

View File

@@ -297,6 +297,12 @@ export default function SiteDashboardPage() {
{ value: 'custom', label: 'Custom' },
]}
/>
<button
onClick={() => router.push(`/sites/${siteId}/funnels`)}
className="btn-secondary text-sm"
>
Funnels
</button>
{canEdit && (
<button
onClick={() => router.push(`/sites/${siteId}/settings`)}