Skip to content

Commit

Permalink
fix: url redirect
Browse files Browse the repository at this point in the history
  • Loading branch information
Dmaziyo committed Jul 20, 2024
1 parent 92af371 commit 3ea205e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/components/Header/Header.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ import HeaderRight from './HeaderRight.astro';
<header>
<nav class='nav-wrapper md:-ml-3 xl:max-w-7xl md:w-full lg:max-w-5xl md:max-w-2xl w-96 ml-4' title={SITE.title}>
<div class='logo flex md:ml-0 ml-3'>
<a href='https://dmaziyo.github.io/Myzara' class='logo-image'>
<a href='/Myzara' class='logo-image'>
<AstroLogo size={40} />
</a>
<a href='https://dmaziyo.github.io/Myzara'>
<a href='/Myzara'>
<h1 class='text-gray-800'>{SITE.title}</h1>
</a>
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/components/LeftSidebar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@ const sidebarSections = allPosts.reduce((col, item, i) => {

<nav aria-labelledby='grid-left' class='pt-6 text-gray-800'>
<div class='logo flex'>
<a href='https://dmaziyo.github.io/Myzara' class='logo-image' data-astro-prefetch>
<a href='/Myzara' class='logo-image' data-astro-prefetch>
<AstroLogo size={40} />
</a>
<a href='https://dmaziyo.github.io/Myzara' data-astro-prefetch>
<a href='/Myzara' data-astro-prefetch>
<h1 class='text-gray-800'>{SITE.title}</h1>
</a>
</div>
Expand Down

0 comments on commit 3ea205e

Please sign in to comment.