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
This commit is contained in:
2025-11-10 15:33:04 +01:00
parent d16d4e02e0
commit 8276ede9fd
4 changed files with 53 additions and 1 deletions

View File

@@ -27,6 +27,9 @@ export function Footer() {
<Link to="/agents" className="text-sm text-gray-700 hover:text-cyan-500 transition-colors">
Agents
</Link>
<Link to="/pods" className="text-sm text-gray-700 hover:text-cyan-500 transition-colors">
Pods
</Link>
</nav>
</div>
<div className="group relative -mx-4 flex items-center self-stretch p-4 transition-colors hover:bg-gray-100 sm:self-auto sm:rounded-2xl lg:mx-0 lg:self-auto lg:p-6">

View File

@@ -64,6 +64,12 @@ export function Header() {
>
Agents
</Link>
<Link
to="/pods"
className="text-base/7 tracking-tight text-gray-700 hover:text-cyan-500 transition-colors"
>
Pods
</Link>
</div>
</div>
<div className="flex items-center gap-6">
@@ -142,6 +148,13 @@ export function Header() {
>
Agents
</Link>
<Link
to="/pods"
className="-mx-3 block rounded-lg px-3 py-2 text-base font-semibold leading-7 text-gray-900 hover:bg-gray-50"
onClick={() => setMobileMenuOpen(false)}
>
Pods
</Link>
</div>
<div className="py-6">
<Button