Skip to content

Commit

Permalink
Get that Mastodon blue check 🔵.
Browse files Browse the repository at this point in the history
  • Loading branch information
gmarty committed Apr 7, 2024
1 parent e584ea8 commit 5da9128
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion src/components/social-icons/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,13 @@ type Props = {
const { kind, href, size = 8 } = Astro.props
const SocialSvg = components[kind]
const sizeClass = size === 8 ? 'size-8' : 'size-6'
let rel = 'noopener noreferrer'
if (kind === 'mastodon') {
rel += ' me'
}
---

<a class="text-sm" target="_blank" rel="noopener noreferrer" {href}
<a class="text-sm" target="_blank" {rel} {href}
><span class="sr-only">{kind}</span><SocialSvg
class={`${sizeClass} fill-current transition motion-reduce:transition-none themed-link hover:scale-110 motion-reduce:hover:transform-none`}
/></a
Expand Down
4 changes: 2 additions & 2 deletions src/content/authors/default.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ gitlab: https://gitlab.com/gmarty
github: https://github.com/gmarty
---

Guillaume (pronounced */ghee-yom/*) has been working in the tech industry for two decades. He was previously as a software engineer at Mozilla on the Firefox OS, and an engineering manager and coach at Twitter.
Guillaume (pronounced */ghee-yom/*) has been working in the tech industry for two decades. He was previously as a software engineer at **Mozilla** on the Firefox OS, and an engineering manager and coach at **Twitter**.

He's passionate about web technologies and contributes regularly to open source projects (check the Gitlab and Github accounts).
He's passionate about web technologies and contributes regularly to open source projects (check the [Gitlab](https://gitlab.com/gmarty) and [Github](https://github.com/gmarty) accounts).

He's also fascinated by video games, animation, history, and, as a Japanese speaker, foreign languages.

Expand Down
2 changes: 1 addition & 1 deletion src/layouts/AuthorLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ const authorPosts = await getCollection('blog', (entry) => {
)
}
<h2
class="pb-2 pt-4 text-2xl font-bold leading-8 tracking-tight text-gray-900 dark:text-gray-100"
class="pb-2 pt-4 text-2xl font-bold leading-8 tracking-tight text-gray-900 dark:text-primary-100"
>
{name}
</h2>
Expand Down

0 comments on commit 5da9128

Please sign in to comment.