Skip to content

Commit

Permalink
Capital letter
Browse files Browse the repository at this point in the history
  • Loading branch information
vvaldesc committed Jun 19, 2024
1 parent 849fd67 commit 9b888dc
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions src/components/HeaderAdmin.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ import Button from "@/components/buttons/Button.astro";
<nav>
<ul>
<li><Button texto="Inicio" href="/" /></li>
<li><Button texto="perfil" href="/perfil" /></li>
<li><Button texto="manager" href="/manager/perfiles" /></li>
<li><Button texto="reportes" href="/reportes" /></li>
<li><Button texto="Perfil" href="/perfil" /></li>
<li><Button texto="Manager" href="/manager/perfiles" /></li>
<li><Button texto="Reportes" href="/reportes" /></li>
</ul>
</nav>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/HeaderClient.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import Button from "@/components/buttons/Button.astro";
<nav>
<ul>
<li><Button texto="Inicio" href="/" /></li>
<li><Button texto="perfil" href="/perfil" /></li>
<li><Button texto="reservar" href="/reservar" /></li>
<li><Button texto="Perfil" href="/perfil" /></li>
<li><Button texto="Reservar" href="/reservar" /></li>
</ul>
</nav>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/HeaderEmployee.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import Button from "@/components/buttons/Button.astro";
<nav>
<ul>
<li><Button texto="Inicio" href="/" /></li>
<li><Button texto="perfil" href="/perfil" /></li>
<li><Button texto="Perfil" href="/perfil" /></li>
</ul>
</nav>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/sections/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ if (sessionInfoState?.sessionInfo) {
---

<header transition:animate={url.includes("manager") ? "slide" : "initial"}>
<h3 class="header-text-logo">Imagen</h3>
<a href="/"><h3 class="header-text-logo">Imagen</h3></a>
{
headerType === "Admin" ? (
<HeaderAdmin />
Expand Down

0 comments on commit 9b888dc

Please sign in to comment.