Skip to content

Commit

Permalink
feat: Add Bluesky AuthorLayout, Footer
Browse files Browse the repository at this point in the history
  • Loading branch information
trillium committed Nov 7, 2024
1 parent bf9396a commit 0e5db5f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions components/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ export default function Footer() {
<SocialIcon kind="youtube" href={siteMetadata.youtube} size={6} />
<SocialIcon kind="linkedin" href={siteMetadata.linkedin} size={6} />
<SocialIcon kind="twitter" href={siteMetadata.twitter} size={6} />
<SocialIcon kind="bluesky" href={siteMetadata.bluesky} size={6} />
<SocialIcon kind="x" href={siteMetadata.x} size={6} />
<SocialIcon kind="instagram" href={siteMetadata.instagram} size={6} />
<SocialIcon kind="threads" href={siteMetadata.threads} size={6} />
Expand Down
3 changes: 2 additions & 1 deletion layouts/AuthorLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ interface Props {
}

export default function AuthorLayout({ children, content }: Props) {
const { name, avatar, occupation, company, email, twitter, linkedin, github } = content
const { name, avatar, occupation, company, email, twitter, bluesky, linkedin, github } = content

return (
<>
Expand Down Expand Up @@ -38,6 +38,7 @@ export default function AuthorLayout({ children, content }: Props) {
<SocialIcon kind="github" href={github} />
<SocialIcon kind="linkedin" href={linkedin} />
<SocialIcon kind="x" href={twitter} />
<SocialIcon kind="bluesky" href={bluesky} />
</div>
</div>
<div className="prose max-w-none pb-8 pt-8 dark:prose-invert xl:col-span-2">
Expand Down

0 comments on commit 0e5db5f

Please sign in to comment.