feat(historique): refonte pixel-perfect avec stats + filtres + tendance 30j (Sprint 4.7)
Inclut le retrait du padding de AppLayout et le wrapper standardisé (mx-auto w-full max-w-[1100px] px-5 py-6 lg:px-9 lg:py-9) ajouté sur 11 pages (Dashboard, Progression, 9 pages Simulation EE/EO/T1) pour laisser chaque page gérer son max-width. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
d8bae9520c
commit
3ce91aaa7b
20 changed files with 1417 additions and 874 deletions
|
|
@ -39,7 +39,7 @@ function DashboardSkeleton() {
|
|||
)
|
||||
}
|
||||
|
||||
export function DashboardPage() {
|
||||
function DashboardContent() {
|
||||
const { user } = useAuth()
|
||||
const { data, isLoading, isError } = usePlan()
|
||||
const queryClient = useQueryClient()
|
||||
|
|
@ -88,3 +88,11 @@ export function DashboardPage() {
|
|||
|
||||
return <DashboardStandardView displayName={displayName} simulationsUsed={data.simulations_used} />
|
||||
}
|
||||
|
||||
export function DashboardPage() {
|
||||
return (
|
||||
<div className="mx-auto w-full max-w-[1100px] px-5 py-6 lg:px-9 lg:py-9">
|
||||
<DashboardContent />
|
||||
</div>
|
||||
)
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue