Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonEricsson committed Jul 1, 2024
1 parent ed16aa4 commit 2e71343
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
15 changes: 7 additions & 8 deletions pages/blog/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,15 +37,14 @@ export default function Blog({ allPostsData }) {
<div className="w-full lg:w-3/5">
<p className="text-base italic mb-4">
this is a space to document and distill my thoughts on publications
and articles within the research community. literature reviews are
marked in <span style={{ color: "#fccccc" }}>pink</span>; blog post
are marked in{" "}
<span style={{ backgroundColor: "#647ca1" }}>gray </span>.
and articles within the research community. literature reviews are personal
and generally messy (marked in <span style={{ color: "#fccccc" }}>pink</span>);
blog post are intended for a wider audience (marked in{" "}
<span style={{ backgroundColor: "#647ca1" }}>gray </span>).
<br />
i write for my own edification; the posts are personal, and
subject to my own interest for the topic at the time of writing. the
literature reviews are generally messy, but i do put some effort
into the blog posts.
<br />
i write for my own edification; and posts are subject to my own interest
for the topic at the time of writing.
</p>
<div className="vertical-line"></div>
{currentPosts.map(({ id, date, title, excerpt, type }) => (
Expand Down
2 changes: 1 addition & 1 deletion pages/indexer.js
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ export default function Index({ blogPosts, reviews }) {
))}
</ul>

<h2 className="text-lg mt-12 mb-2 ml-24 font-semibold text-black inline-block px-1 rounded" style={{ backgroundColor: '#fccccc' }}>Lit. reviews</h2>
<h2 className="text-lg mt-12 mb-2 ml-24 font-semibold text-black inline-block px-1 rounded" style={{ backgroundColor: '#fccccc' }}>Literature reviews</h2>
<ul className="list-none">
{reviews.map(({ id, title, date }) => (
<li key={id} className="mt-2 flex items-center">
Expand Down

0 comments on commit 2e71343

Please sign in to comment.