Update something

This commit is contained in:
tiff 2024-12-28 20:59:11 -05:00
parent 63f9ecda55
commit eb806de16b
3 changed files with 27 additions and 10 deletions

View File

@ -1,4 +1,9 @@
const socialIcons = {
Bluesky: `<svg
xmlns="http://www.w3.org/2000/svg" stroke-linecap="round" stroke-linejoin="round" class="icon-tabler">
<path stroke="none" d="M0 0h24v24H0z" fill="none"/><path d="M6.335 5.144c-1.654 -1.199 -4.335 -2.127 -4.335 .826c0 .59 .35 4.953 .556 5.661c.713 2.463 3.13 2.75 5.444 2.369c-4.045 .665 -4.889 3.208 -2.667 5.41c1.03 1.018 1.913 1.59 2.667 1.59c2 0 3.134 -2.769 3.5 -3.5c.333 -.667 .5 -1.167 .5 -1.5c0 .333 .167 .833 .5 1.5c.366 .731 1.5 3.5 3.5 3.5c.754 0 1.637 -.571 2.667 -1.59c2.222 -2.203 1.378 -4.746 -2.667 -5.41c2.314 .38 4.73 .094 5.444 -2.369c.206 -.708 .556 -5.072 .556 -5.661c0 -2.953 -2.68 -2.025 -4.335 -.826c-2.293 1.662 -4.76 5.048 -5.665 6.856c-.905 -1.808 -3.372 -5.194 -5.665 -6.856z" /></svg>`,
Github: `<svg
xmlns="http://www.w3.org/2000/svg"
class="icon-tabler"
@ -200,7 +205,8 @@ const socialIcons = {
<path stroke="none" d="M0 0h24v24H0z" fill="none"></path>
<path d="M15 10l-4 4l6 6l4 -16l-18 7l4 2l2 6l3 -4"></path>
</svg>`,
Mastodon: `<svg class="icon-tabler" viewBox="-10 -5 1034 1034" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
Mastodon:
`<svg class="icon-tabler" viewBox="-10 -5 1034 1034" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" version="1.1">
<path fill="currentColor"
d="M499 112q-93 1 -166 11q-81 11 -128 33l-14 8q-16 10 -32 25q-22 21 -38 47q-21 33 -32 73q-14 47 -14 103v37q0 77 1 119q3 113 18 188q19 95 62 154q50 67 134 89q109 29 210 24q46 -3 88 -12q30 -7 55 -17l19 -8l-4 -75l-22 6q-28 6 -57 10q-41 6 -78 4q-53 -1 -80 -7
q-43 -8 -67 -30q-29 -25 -35 -72q-2 -14 -2 -29l25 6q31 6 65 10q48 7 93 9q42 2 92 -2q32 -2 88 -9t107 -30q49 -23 81.5 -54.5t38.5 -63.5q9 -45 13 -109q4 -46 5 -97v-41q0 -56 -14 -103q-11 -40 -32 -73q-16 -26 -38 -47q-15 -15 -32 -25q-12 -8 -14 -8

View File

@ -6,9 +6,14 @@ const URL = Astro.url;
const shareLinks = [
{
name: "WhatsApp",
href: "https://wa.me/?text=",
linkTitle: `Share this post via WhatsApp`,
Bluesky: "Bluesky",
href: "https://bsky.app/intent/compose?text=",
linkTitle: `Share this post on Bluesky`,
},
{
LinkedIn: "LinkedIn",
href: "https://www.linkedin.com/sharing/share-offsite/?url=",
linkTitle: `Share this post on LinkedIn`,
},
{
name: "Facebook",

View File

@ -34,7 +34,7 @@ export const LOGO_IMAGE = {
export const SOCIALS: SocialObjects = [
{
name: "Github",
href: "https://github.com/satnaing/astro-paper",
href: "https://github.com/twhite96",
linkTitle: ` ${SITE.title} on Github`,
active: true,
},
@ -42,19 +42,19 @@ export const SOCIALS: SocialObjects = [
name: "Facebook",
href: "https://github.com/satnaing/astro-paper",
linkTitle: `${SITE.title} on Facebook`,
active: true,
active: false,
},
{
name: "Instagram",
href: "https://github.com/satnaing/astro-paper",
linkTitle: `${SITE.title} on Instagram`,
active: true,
active: false,
},
{
name: "LinkedIn",
href: "https://github.com/satnaing/astro-paper",
linkTitle: `${SITE.title} on LinkedIn`,
active: true,
active: false,
},
{
name: "Mail",
@ -148,8 +148,14 @@ export const SOCIALS: SocialObjects = [
},
{
name: "Mastodon",
href: "https://github.com/satnaing/astro-paper",
href: "https://hachyderm,io/@tiff",
linkTitle: `${SITE.title} on Mastodon`,
active: false,
active: true,
},
{
name: "Bluesky",
href: "https://bsky.app/profile/tiff.engineer",
linkTitle: `${SITE.title} on Bluesky`,
active: true,
},
];