From 3e7565deed33515c5c5d611649a6cd9696bda1b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jaime=20Alan=20Guti=C3=A9rrez=20Cruz?= <33694882+jagcruz@users.noreply.github.com> Date: Sat, 13 Jul 2024 16:08:50 -0300 Subject: [PATCH] fix: :rocket: update slugs in `Navbar` component --- src/components/Navbar/Navbar.astro | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/Navbar/Navbar.astro b/src/components/Navbar/Navbar.astro index bc9cc0e..372d875 100644 --- a/src/components/Navbar/Navbar.astro +++ b/src/components/Navbar/Navbar.astro @@ -4,10 +4,10 @@ import { Icon } from 'astro-icon/components'; import NavbarLogo from './NavbarLogo.astro'; const items: NavbarItem[] = [ - { text: 'Inicio', slug: '/' }, - { text: 'Ranking', slug: '/ranking' }, - { text: 'Creadores', slug: '/creators' }, - { text: 'Roadmap', slug: '/roadmap' }, + { text: 'Inicio', slug: '/ana-cards-web' }, + { text: 'Ranking', slug: '/ana-cards-web/ranking' }, + { text: 'Creadores', slug: '/ana-cards-web/creators' }, + { text: 'Roadmap', slug: '/ana-cards-web/roadmap' }, { text: 'Contacto', slug: 'https://discord.com/invite/6rfgHETy', external: true } ]; ---