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 apps/sim/app/(landing)/components/footer/footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ interface FooterItem {
}

const PRODUCT_LINKS: FooterItem[] = [
{ label: 'Enterprise', href: '/enterprise' },
{ label: 'Mothership', href: 'https://docs.sim.ai/mothership', external: true },
{ label: 'Workflows', href: 'https://docs.sim.ai', external: true },
{ label: 'Knowledge Base', href: 'https://docs.sim.ai/knowledgebase', external: true },
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,10 @@ interface MobileNavProps {
* {@link NAV_MENUS} automatically expands them here as grouped sections too - the
* sheet mirrors the desktop nav's information architecture with no extra edit.
*/
const STANDALONE_LINKS = [{ label: 'Pricing', href: '/pricing' }] as const
const STANDALONE_LINKS = [
{ label: 'Enterprise', href: '/enterprise' },
{ label: 'Pricing', href: '/pricing' },
] as const

/** Shared row chrome for every tappable text link in the sheet. */
const SHEET_ROW =
Expand Down
3 changes: 3 additions & 0 deletions apps/sim/app/(landing)/components/navbar/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,9 @@ export function Navbar({ stars, logoOnly = false }: NavbarProps) {
{NAV_MENUS.map((menu) => (
<NavMenuChip key={menu.label} menu={menu} />
))}
<ChipLink href='/enterprise' itemProp='url'>
Enterprise
</ChipLink>
<ChipLink href='/pricing' itemProp='url'>
Pricing
</ChipLink>
Expand Down
Loading