Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions packages/astro-theme/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ const sections: Section[] = [
text: "CheerpX for Flash",
href: "https://leaningtech.com/cheerpx-for-flash",
},
{ text: "BrowserPod", href: "https://browserpod.io" },
],
},
{
Expand Down
12 changes: 12 additions & 0 deletions packages/global-navbar/src/Nav.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
import CheerpLogo from "./logos/cheerp.svg.svelte";
import CheerpJLogo from "./logos/cheerpj.svg.svelte";
import CheerpXLogo from "./logos/cheerpx.svg.svelte";
import BrowserPodLogo from "./logos/browserpod.svg.svelte";

const mobileMenu = {
Technology: [
Expand All @@ -27,6 +28,10 @@
href: "https://cheerpx.io/",
title: "CheerpX",
},
{
href: "https://browserpod.io/",
title: "BrowserPod",
},
],
Resources: [
{
Expand Down Expand Up @@ -84,6 +89,13 @@
>
<CheerpXLogo />
</BigIconItem>
<BigIconItem
href="https://browserpod.io/"
title="BrowserPod"
description="Dev Environments in your browser"
>
<BrowserPodLogo />
</BigIconItem>
</ul>
</nav>

Expand Down
Loading