Improve the landing page

This commit is contained in:
Urtzi Alfaro
2025-11-07 12:00:01 +01:00
parent 547292c89e
commit 980bbd4b61
15 changed files with 4277 additions and 2176 deletions

View File

@@ -78,7 +78,12 @@ export const PublicHeader = forwardRef<PublicHeaderRef, PublicHeaderProps>(({
const [activeSection, setActiveSection] = useState<string>('');
// Default navigation items
const defaultNavItems: Array<{id: string; label: string; href: string; external?: boolean}> = [];
const defaultNavItems: Array<{id: string; label: string; href: string; external?: boolean}> = [
{ id: 'home', label: t('common:nav.home', 'Inicio'), href: '/' },
{ id: 'features', label: t('common:nav.features', 'Funcionalidades'), href: '/features' },
{ id: 'about', label: t('common:nav.about', 'Nosotros'), href: '/about' },
{ id: 'contact', label: t('common:nav.contact', 'Contacto'), href: '/help/support' }
];
const navItems = navigationItems.length > 0 ? navigationItems : defaultNavItems;