Skip to content

Commit 25b8fc2

Browse files
committed
feat(landing): add enterprise link to navbar and footer
1 parent 9d44d42 commit 25b8fc2

3 files changed

Lines changed: 8 additions & 1 deletion

File tree

apps/sim/app/(landing)/components/footer/footer.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ interface FooterItem {
2727
}
2828

2929
const PRODUCT_LINKS: FooterItem[] = [
30+
{ label: 'Enterprise', href: '/enterprise' },
3031
{ label: 'Mothership', href: 'https://docs.sim.ai/mothership', external: true },
3132
{ label: 'Workflows', href: 'https://docs.sim.ai', external: true },
3233
{ label: 'Knowledge Base', href: 'https://docs.sim.ai/knowledgebase', external: true },

apps/sim/app/(landing)/components/navbar/components/mobile-nav/mobile-nav.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,10 @@ interface MobileNavProps {
3838
* {@link NAV_MENUS} automatically expands them here as grouped sections too - the
3939
* sheet mirrors the desktop nav's information architecture with no extra edit.
4040
*/
41-
const STANDALONE_LINKS = [{ label: 'Pricing', href: '/pricing' }] as const
41+
const STANDALONE_LINKS = [
42+
{ label: 'Enterprise', href: '/enterprise' },
43+
{ label: 'Pricing', href: '/pricing' },
44+
] as const
4245

4346
/** Shared row chrome for every tappable text link in the sheet. */
4447
const SHEET_ROW =

apps/sim/app/(landing)/components/navbar/navbar.tsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,9 @@ export function Navbar({ stars, logoOnly = false }: NavbarProps) {
7474
{NAV_MENUS.map((menu) => (
7575
<NavMenuChip key={menu.label} menu={menu} />
7676
))}
77+
<ChipLink href='/enterprise' itemProp='url'>
78+
Enterprise
79+
</ChipLink>
7780
<ChipLink href='/pricing' itemProp='url'>
7881
Pricing
7982
</ChipLink>

0 commit comments

Comments
 (0)