Skip to content
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
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,5 +158,6 @@ For other forms of contribution checkout [CONTRIBUTING.md](CONTRIBUTING.md)

This ensures all contributions are **structured consistently** and can be displayed properly on the website.

[https://www.rustnigeria.org](rustnigeria.org)
[STAGEING url](https://nigeria-website.fly.dev/)
Production: [https://www.rustnigeria.org](rustnigeria.org)

Staging: [https://nigeria-website.fly.dev](https://nigeria-website.fly.dev/)
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/images/members/iambenkay.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions data/articles.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,5 +101,16 @@
{ "name": "Austin Aigbe", "image": "/assets/images/members/austin.jpg" }
],
"tags": ["technical"]
},
{
"banner": "/assets/images/article-banners/iambenkay-header-rust.png",
"name": "Rust features that make programming fun again",
"description": "There are a number of features that make Rust a fun language to work with and I am going to be discussing some of them that I find particularly interesting in this article",
"article_link": "https://iambenkay.github.io/rust-features-that-make-programming-fun-again/",
"date": "2025-12-11T00:00:00.000Z",
"authors": [
{ "name": "BENKAY", "image": "/assets/images/members/iambenkay.jpeg" }
],
"tags": ["technical"]
}
]
6 changes: 4 additions & 2 deletions src/components/articles_section/articles/article_card.rs
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,11 @@ pub fn ArticleCard(
<div class="p-4">
<p class="text-sm py-1 font-medium rounded-lg text-primary-50">{date}</p>

<h3 class="mt-2 title-1 line-clamp-2 h-14">{article.name.clone()}</h3>
<h3 class="mt-2 title-1 line-clamp-2 h-14">
<a class="hover:underline" href=article.article_link.clone()>{article.name.clone()}</a>
</h3>

<p class="text-grey-40 text-sm mt-1 line-clamp-3">{article.description}</p>
<p class="text-grey-40 text-sm mt-1 cursor-pointer line-clamp-3">{article.description}</p>

<div class="flex items-center gap-x-2 mt-2">
<span class="font-semibold">AUTHORS:</span>
Expand Down
Loading