BunnyCDN, Search tab, journeys redesign, and dashboard polish #52

Merged
uz1mani merged 86 commits from staging into main 2026-03-17 10:08:26 +00:00
50 changed files with 5113 additions and 1627 deletions
Showing only changes of commit 52427fea93 - Show all commits

View File

@@ -16,7 +16,7 @@ import {
useJourneyEntryPoints,
} from '@/lib/swr/dashboard'
const DEFAULT_DEPTH = 10
const DEFAULT_DEPTH = 4
function getThisWeekRange(): { start: string; end: string } {
const today = new Date()
@@ -148,12 +148,12 @@ export default function JourneysPage() {
<span className="text-brand-orange font-bold">
{depth} steps deep
</span>
<span>10 steps</span>
<span>5 steps</span>
</div>
<input
type="range"
min={2}
max={10}
max={5}
step={1}
value={depth}
onChange={(e) => setDepth(parseInt(e.target.value))}