From 48b33e925283ac791599790660bd8a2c6088e0b4 Mon Sep 17 00:00:00 2001 From: Yves Gugger Date: Mon, 8 Dec 2025 07:46:58 +0100 Subject: [PATCH] Improve UX: Add Footer everywhere, unified max-width, beautiful charts - Added Footer component to all pages (home, dashboard, TLD pages) - Changed max-width from 6xl to 7xl for consistent layout - Enhanced mini-charts with gradients, area fills, and data points - Better visual hierarchy and spacing - Consistent design across all pages --- frontend/src/app/dashboard/page.tsx | 3 + frontend/src/app/page.tsx | 27 ++------ frontend/src/app/tld-pricing/[tld]/page.tsx | 3 + frontend/src/app/tld-pricing/page.tsx | 75 +++++++++++++++++---- frontend/src/components/Header.tsx | 2 +- 5 files changed, 75 insertions(+), 35 deletions(-) diff --git a/frontend/src/app/dashboard/page.tsx b/frontend/src/app/dashboard/page.tsx index 9346984..cbbe30f 100644 --- a/frontend/src/app/dashboard/page.tsx +++ b/frontend/src/app/dashboard/page.tsx @@ -5,6 +5,7 @@ import { useRouter } from 'next/navigation' import { useStore } from '@/lib/store' import { api } from '@/lib/api' import { Header } from '@/components/Header' +import { Footer } from '@/components/Footer' import { Plus, Trash2, @@ -560,6 +561,8 @@ export default function DashboardPage() { )} + +