Skip to content

Commit

Permalink
b
Browse files Browse the repository at this point in the history
  • Loading branch information
akku1139 authored Feb 21, 2024
1 parent f3679a7 commit fae09b9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Articles.astro
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const sortedData = combinedData.sort(compareDates).slice(0, 15);
}
</div>

<div class="flex-auto">
<div class="flex">
<ServiceIcon name="Zenn Publication" link="https://zenn.dev/p/trans" imgSrc={zennIcon} />
<ServiceIcon name="note マガジン" link="https://note.com/kombumori/m/me3717a077c16" imgSrc={noteIcon} />
<ServiceIcon name="Qiita Organization" link="https://qiita.com/organizations/trans-dev" imgSrc="https://cdn.qiita.com/assets/public/qiita-pwa-icon_512-4f5b031e6cb002cb865db0dd38635a78.png" />
Expand Down
2 changes: 1 addition & 1 deletion src/components/ServiceIcon.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export type Props = {
const { link, imgSrc, name }: Props = Astro.props;
---

<a href={link}>
<a href={link} class="text-center m-2">
<img src={imgSrc} alt={name} class="h-20" />
{name}
</a>

0 comments on commit fae09b9

Please sign in to comment.