Improve the landing page
This commit is contained in:
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user