diff --git a/src/routes/components/Navbar.svelte b/src/routes/components/Navbar.svelte index 0e14c60..042367a 100644 --- a/src/routes/components/Navbar.svelte +++ b/src/routes/components/Navbar.svelte @@ -1,18 +1,16 @@ @@ -20,66 +18,17 @@ - - - {#if currentPath === "/"} - - {"{"} - Inicio - {"}"} - - {:else} - Inicio - {/if} - - - - {#if currentPath === "/events"} - - {"{"} - Eventos - {"}"} - - {:else} - Eventos - {/if} - - - - {#if currentPath === "/projects"} - - {"{"} - Proyectos - {"}"} - - {:else} - Proyectos - {/if} - - - - {#if currentPath === "/contact"} - - {"{"} - Contacto - {"}"} - - {:else} - Contacto - {/if} - - - - {#if currentPath === "/member"} - + {#each LINKS as { href, text }} + + {#if current_path === href} {"{"} - Miembros + {text} {"}"} - - {:else} - Miembros - {/if} - + {:else} + {text} + {/if} + + {/each}