Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Update featured list #1243

Merged
merged 1 commit into from
Feb 12, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content
30 changes: 15 additions & 15 deletions src/features/TimelineFeatured/FeaturedList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,6 @@ const Container = styled("div")(({ theme }) => ({
export const FeaturedList = (): React.JSX.Element => (
<Container as="section">
{/* StaticImageを使用するためベタ書き :-/ */}
<FeaturedCard
title="2024年、GraphQLにどう向き合う?導入と活用の実際"
url="https://findy.connpass.com/event/328076/"
>
<StaticImage
src="../../../content/featured/j0BfD2l9.jpg"
alt="2024年、GraphQLにどう向き合う?導入と活用の実際"
width={1200}
height={630}
/>
</FeaturedCard>
<FeaturedCard
title="「モノづくり」への憧れがアウトプットの原動力 - Findy Engineer Lab - ファインディエンジニアラボ"
url="https://findy-code.io/engineer-lab/bicstone_me"
Expand All @@ -39,12 +28,12 @@ export const FeaturedList = (): React.JSX.Element => (
/>
</FeaturedCard>
<FeaturedCard
title="backlog-notify"
url="https://github.com/bicstone/backlog-notify"
title="モノづくりを愛する機械設計エンジニアが、趣味で始めたWebエンジニアに転身した理由 - Findy Engineer Lab - ファインディエンジニアラボ"
url="https://findy-code.io/engineer-lab/turningpoint-bicstone-me"
>
<StaticImage
src="../../../content/featured/backlog-notify.png"
alt="backlog-notify"
src="../../../content/featured/20250207144051.png"
alt="モノづくりを愛する機械設計エンジニアが、趣味で始めたWebエンジニアに転身した理由 - Findy Engineer Lab - ファインディエンジニアラボ"
width={1200}
height={630}
/>
Expand All @@ -60,6 +49,17 @@ export const FeaturedList = (): React.JSX.Element => (
height={630}
/>
</FeaturedCard>
<FeaturedCard
title="backlog-notify"
url="https://github.com/bicstone/backlog-notify"
>
<StaticImage
src="../../../content/featured/backlog-notify.png"
alt="backlog-notify"
width={1200}
height={630}
/>
</FeaturedCard>
<FeaturedCard
title="コードレビューにラベルを付けるだけでチームの心理的安全性を高めた話"
url="https://zenn.dev/hacobell_dev/articles/code-review-comment-prefix"
Expand Down
Loading