removed socials and share links. Already CI fix tentative 6 ! "Les choses passent vite quand on s amuse"
This commit is contained in:
parent
6cc517ac6f
commit
70c5b0c6de
|
@ -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>
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in a new issue