From 8276ede9fd5c80cfda9f5a201c07e76f3cc44048 Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Mon, 10 Nov 2025 15:33:04 +0100 Subject: [PATCH] feat: add Pods page with navigation links - Added new Pods page route with lazy loading - Integrated Pods navigation links in header (desktop and mobile) and footer --- src/App.tsx | 4 +++- src/components/Footer.tsx | 3 +++ src/components/Header.tsx | 13 +++++++++++++ src/pages/pods/Homepod.tsx | 34 ++++++++++++++++++++++++++++++++++ 4 files changed, 53 insertions(+), 1 deletion(-) create mode 100644 src/pages/pods/Homepod.tsx diff --git a/src/App.tsx b/src/App.tsx index a2e1173..505a29c 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -10,6 +10,7 @@ const DownloadPage = lazy(() => import('./pages/download/DownloadPage')); const ComputePage = lazy(() => import('./pages/compute/ComputePage')); const StoragePage = lazy(() => import('./pages/storage/StoragePage')); const GpuPage = lazy(() => import('./pages/gpu/GpuPage')); +const PodsPage = lazy(() => import('./pages/pods/PodsPage')); function App() { return ( @@ -24,7 +25,8 @@ function App() { } /> } /> } /> - } /> + } /> + } /> diff --git a/src/components/Footer.tsx b/src/components/Footer.tsx index 1656af3..08df4b5 100644 --- a/src/components/Footer.tsx +++ b/src/components/Footer.tsx @@ -27,6 +27,9 @@ export function Footer() { Agents + + Pods +
diff --git a/src/components/Header.tsx b/src/components/Header.tsx index 4c64d0e..47c36d6 100644 --- a/src/components/Header.tsx +++ b/src/components/Header.tsx @@ -64,6 +64,12 @@ export function Header() { > Agents + + Pods +
@@ -142,6 +148,13 @@ export function Header() { > Agents + setMobileMenuOpen(false)} + > + Pods +