import { createFileRoute } from '@tanstack/react-router'; import { LazyComponent } from '@/components/lazy-component'; import { OverviewFilterButton, OverviewFiltersButtons, } from '@/components/overview/filters/overview-filters-buttons'; import { LiveCounter } from '@/components/overview/live-counter'; import OverviewInsights from '@/components/overview/overview-insights'; import { OverviewInterval } from '@/components/overview/overview-interval'; import OverviewMetrics from '@/components/overview/overview-metrics'; import { OverviewRange } from '@/components/overview/overview-range'; import { OverviewShare } from '@/components/overview/overview-share'; import OverviewTopDevices from '@/components/overview/overview-top-devices'; import OverviewTopEvents from '@/components/overview/overview-top-events'; import OverviewTopGeo from '@/components/overview/overview-top-geo'; import OverviewTopPages from '@/components/overview/overview-top-pages'; import OverviewTopSources from '@/components/overview/overview-top-sources'; import OverviewUserJourney from '@/components/overview/overview-user-journey'; import OverviewWeeklyTrends from '@/components/overview/overview-weekly-trends'; import { createProjectTitle, PAGE_TITLES } from '@/utils/title'; export const Route = createFileRoute('/_app/$organizationId/$projectId/')({ component: ProjectDashboard, head: () => { return { meta: [ { title: createProjectTitle(PAGE_TITLES.DASHBOARD), }, ], }; }, }); function ProjectDashboard() { const { projectId } = Route.useParams(); return (
); }