feat: tab bar

This commit is contained in:
OpenSquared
2026-06-29 08:56:10 +02:00
parent 97077af369
commit 45e5504256
5 changed files with 196 additions and 45 deletions

View File

@@ -0,0 +1,13 @@
import { Radio, FlaskConical } from 'lucide-react'
import type { LucideIcon } from 'lucide-react'
export interface KeepAliveMeta {
path: string
label: string
icon: LucideIcon
}
export const KEEP_ALIVE_META: KeepAliveMeta[] = [
{ path: '/market-events', label: 'Market Events', icon: Radio },
{ path: '/causal-lab', label: 'Lab Causal', icon: FlaskConical },
]