Skip to content

Commit 7b18756

Browse files
authored
Merge pull request #51 from jlalfonso21/patch-1
bugfix: fix links in Header navigation
2 parents 8752490 + ae42f2e commit 7b18756

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/components/header.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ pub fn Header() -> impl IntoView {
1111
<header class="border-b border-b-black/20 bg-orange-200 dark:bg-transparent">
1212
<div class="container mx-auto px-4 flex items-center justify-between flex-col lg:flex-row">
1313
<div class="flex justify-between w-full lg:w-auto">
14-
<a href="/" exact=true class="flex items-center gap-x-4">
14+
<a href="https://rustlang-es.org" exact=true class="flex items-center gap-x-4">
1515
<LogoRustPageIcon size=80/>
1616
</a>
1717
<button
@@ -36,15 +36,15 @@ pub fn Header() -> impl IntoView {
3636
</a>
3737
</li>
3838
<li class="nav-item">
39-
<a href="/aprende" target="_blank">
39+
<a href="https://rustlang-es.org/aprende" target="_blank">
4040
"Aprende"
4141
</a>
4242
</li>
4343
<li class="nav-item">
44-
<a href="/comunidad">"Comunidad"</a>
44+
<a href="https://rustlang-es.org/comunidad">"Comunidad"</a>
4545
</li>
4646
<li class="nav-item">
47-
<a href="/colaboradores">"Colaboradores"</a>
47+
<a href="https://rustlang-es.org/colaboradores">"Colaboradores"</a>
4848
</li>
4949
<li class="nav-item">
5050
<a href="/">"Blog"</a>

0 commit comments

Comments
 (0)