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

View file

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