Skip to content

Commit

Permalink
fix some 404
Browse files Browse the repository at this point in the history
  • Loading branch information
beuleubeuleu committed Dec 8, 2023
1 parent d644dbd commit 50ee2e2
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/Hero.astro
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
</p>
</div>
<div class="cta">
<a href="/blog/projets">Mes Projets</a>
<a href="/blog">Mes Réalisations</a>
<a href="/contact/">Contactez-moi!</a>
</div>
</section>
Expand Down
2 changes: 1 addition & 1 deletion src/components/blog/ArticleCard.astro
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ const {
</div>

<div class="card__image">
<Image src={ img } alt="" width="640" height="360" format="webp" transition:name={ `hero-image-${ title }` }/>
<Image src={ img } alt="" width="640" height="360" format="webp" transition:name={ `hero-image-${ title }-${id}` }/>
</div>

</div>
Expand Down
4 changes: 2 additions & 2 deletions src/data/myArticles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,11 +68,11 @@ export const myArticles = [
id: "wip-523425"
},
{
titre: "Framework d'apprentissage",
titre: "La Méthode",
techStack: [],
href: "",
img: "",
description: "DDD OpenSource",
description: "DDD OpenSource - Framework d'apprentissage",
type: "Expérience/Projet",
id: "wip-541247"
}
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/ArticleLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const { titre, description, blogTitle, src, alt, techstack, date, id } = Astro.p
label="Page d'accueil"
/>
<BreadcrumbsItem
href="/projets/"
href="/blog/"
label="Mes articles"
/>
<BreadcrumbsItem
Expand Down

0 comments on commit 50ee2e2

Please sign in to comment.