first blog more written

This commit is contained in:
2026-04-07 21:24:58 -05:00
parent fdbc4b1ed8
commit c2ae195cb8
15 changed files with 180 additions and 107 deletions

View File

@@ -1,7 +1,8 @@
import {Article, ARTICLES, useArticle} from "./ArticleContext";
import {useArticle} from "./ArticleContext";
import "./list.sass";
import {ReactComponent as BoxSvg} from "../img/blog-box.svg";
import {Reader} from "./Reader";
import {Article, ARTICLES} from "./articles";
export function ArticlesList() {
@@ -10,7 +11,7 @@ export function ArticlesList() {
<section className="articles">
{
ARTICLES.map(a =>
<BlogBox key={a.name} article={a}/>
<BlogBox key={a.name} article={a} />
)
}
</section>