removed socials and share links. Already CI fix tentative 6 ! "Les choses passent vite quand on s amuse"
Some checks failed
/ build (push) Successful in 1m42s
/ deploy (push) Failing after 2s

This commit is contained in:
Gu://em_ 2025-05-30 14:22:00 +02:00
parent 6cc517ac6f
commit 70c5b0c6de
2 changed files with 9 additions and 9 deletions

View file

@ -1,8 +1,8 @@
---
import { SHARE_LINKS } from "@/constants";
import LinkButton from "./LinkButton.astro";
// import { SHARE_LINKS } from "@/constants";
// import LinkButton from "./LinkButton.astro";
const URL = Astro.url;
// const URL = Astro.url;
---
<div
@ -10,7 +10,7 @@ const URL = Astro.url;
>
<!-- <span class="italic">Share this post on:</span> -->
<div class="text-center">
{
<!-- {
SHARE_LINKS.map(social => (
<LinkButton
href={`${social.href + URL}`}
@ -21,6 +21,6 @@ const URL = Astro.url;
<span class="sr-only">{social.linkTitle}</span>
</LinkButton>
))
}
} -->
</div>
</div>

View file

@ -1,6 +1,6 @@
---
import { SOCIALS } from "@/constants";
import LinkButton from "./LinkButton.astro";
// import { SOCIALS } from "@/constants";
// import LinkButton from "./LinkButton.astro";
export interface Props {
centered?: boolean;
@ -10,7 +10,7 @@ const { centered = false } = Astro.props;
---
<div class:list={["flex-wrap justify-center gap-1", { flex: centered }]}>
{
<!-- {
SOCIALS.map(social => (
<LinkButton
href={social.href}
@ -21,5 +21,5 @@ const { centered = false } = Astro.props;
<span class="sr-only">{social.linkTitle}</span>
</LinkButton>
))
}
} -->
</div>