feat(belo): add analysis page with historical stats, chart, and date range picker

This commit is contained in:
Jose Selesan
2026-06-04 09:48:20 -03:00
parent bd53b26f29
commit 8b8a4670cb
9 changed files with 340 additions and 5 deletions

View File

@@ -0,0 +1,6 @@
import { createFileRoute } from "@tanstack/react-router";
import { BeloAnalysisPage } from "@/features/belo/BeloAnalysisPage";
export const Route = createFileRoute("/_authenticated/quotes/belo/analysis")({
component: BeloAnalysisPage,
});

View File

@@ -0,0 +1,6 @@
import { createFileRoute } from "@tanstack/react-router";
import { BeloPage } from "@/features/belo/BeloPage";
export const Route = createFileRoute("/_authenticated/quotes/belo/")({
component: BeloPage,
});

View File

@@ -1,6 +1,5 @@
import { createFileRoute } from "@tanstack/react-router";
import { BeloPage } from "@/features/belo/BeloPage";
import { Outlet, createFileRoute } from "@tanstack/react-router";
export const Route = createFileRoute("/_authenticated/quotes/belo")({
component: BeloPage,
component: Outlet,
});