diff --git a/src/App.tsx b/src/App.tsx
index a2e11738..505a29c4 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 1656af36..08df4b54 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 4c64d0ef..47c36d63 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
+
+ )
+}