diff --git a/packages/twenty-website/src/sections/footer/footer.data.ts b/packages/twenty-website/src/sections/footer/footer.data.ts index 6ee0d7129b..2e5a5ade42 100644 --- a/packages/twenty-website/src/sections/footer/footer.data.ts +++ b/packages/twenty-website/src/sections/footer/footer.data.ts @@ -38,8 +38,6 @@ export type FooterSocialLink = { icon: IconComponent; }; -// Sitemap includes Customers — it exists in the nav but was missing from the -// old footer. export const FOOTER: { navGroups: readonly FooterNavGroup[]; socialLinks: readonly FooterSocialLink[]; @@ -50,6 +48,7 @@ export const FOOTER: { title: msg`Sitemap`, links: [ { label: msg`Home`, href: '/' }, + { label: msg`Product`, href: '/product' }, { label: msg`Pricing`, href: '/pricing' }, { label: msg`Customers`, href: '/customers' }, { label: msg`Partners`, href: '/partners' }, diff --git a/packages/twenty-website/src/sections/menu/data/menu.ts b/packages/twenty-website/src/sections/menu/data/menu.ts index 29e8d295f0..c27779be1d 100644 --- a/packages/twenty-website/src/sections/menu/data/menu.ts +++ b/packages/twenty-website/src/sections/menu/data/menu.ts @@ -3,6 +3,7 @@ import { IconBook, IconBrandLinkedin, IconBrandX, + IconBulb, IconCode, IconTag, IconUsers, @@ -22,10 +23,23 @@ export const MENU: { } = { appUrl: SITE_URLS.appWelcome, navItems: [ - { href: '/why-twenty', label: msg`Why` }, + { href: '/product', label: msg`Product` }, { label: msg`Resources`, children: [ + { + label: msg`Why`, + description: msg`The story behind Twenty`, + href: '/why-twenty', + icon: IconBulb, + preview: { + image: '/images/menu/why.webp', + imageAlt: msg`Why Twenty illustration`, + imagePosition: 'center', + title: msg`Why teams choose Twenty`, + description: msg`The principles and product philosophy behind the open source CRM.`, + }, + }, { label: msg`User Guide`, description: msg`Learn how to use Twenty`,