Skip to content

Commit fcf4624

Browse files
committed
timeline: and fezzilla.
1 parent d43a316 commit fcf4624

File tree

5 files changed

+54
-1
lines changed

5 files changed

+54
-1
lines changed

public/logs/series/common-side-effects.txt

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,11 @@ the key to curing all the world's diseases. However, they soon find themselves e
1515
"Big Pharma" and the government will stop at nothing to suppress the discovery.
1616

1717
It blends the sharp, satirical wit of *King of the Hill* with a trippy, psychedelic visual style that feels right at home on Adult Swim.
18-
The show tackles themes of corporate greed and the ethics of healthcare with a healthy dose of humor and heart.
18+
The show tackles themes of [corporate greed](/#/vocab/corporate-greed) and the ethics of healthcare with a healthy dose of humor and heart.
19+
20+
## My Opinion
21+
22+
"Common Side Effects" stands out with its **bold storytelling** and **unique animation style**. The narrative unfolds greatly,
23+
complemented by its great music and **atmospheric design**. The way it tackles complex themes like **corporate greed** and **healthcare ethics**,
24+
while maintaining a comedic tone, is truly _impressive_. It's a show that makes you think, but never forgets to entertain.
25+
A must-watch for fans of adult animation and thought-provoking sci-fi.

public/roadmap/roadmap.piml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -105,3 +105,13 @@
105105
(priority) High
106106
(created_at) 2025-11-30T11:00:00+03:00
107107
(notes) Added links to Settings and Achievements page in toast.
108+
109+
> (issues)
110+
(id) FEZ-10
111+
(title) Global Side Panel & Vocabulary Links
112+
(description) Added resizable global side panel and vocabulary rendering markdown using the same side panel.
113+
(category) Feature
114+
(status) Completed
115+
(priority) High
116+
(created_at) 2025-11-30T11:00:00+03:00
117+
(notes) A route for returning and rendering vocabulary components.

public/timeline/timeline.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
[
2+
{
3+
"date": "2025-12-11",
4+
"title": "Global Side Panel & Vocabulary Links",
5+
"description": "Implemented a resizable, global side panel for contextual information, with vocabulary links in Markdown content that dynamically open the panel with lazy-loaded React components.",
6+
"type": "feature",
7+
"icon": "SidebarIcon",
8+
"link": "/#/blog/react-magic-markdown-components"
9+
},
210
{
311
"date": "2025-11-30",
412
"title": "Settings Page UI/UX Redesign",

src/data/vocab/corporate-greed.js

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
import React from 'react';
2+
3+
export default function CorporateGreed() {
4+
return (
5+
<div className="space-y-4">
6+
<p>
7+
<strong>Corporate Greed</strong> refers to the excessive pursuit of profit or wealth by business corporations, often prioritized over ethical behavior, employee welfare, environmental sustainability, or the public good.
8+
</p>
9+
<p>
10+
It can manifest in various ways, including:
11+
</p>
12+
<ul className="list-disc pl-5 space-y-1 text-gray-400 text-sm">
13+
<li>Price gouging and exploitation of consumers.</li>
14+
<li>Exploitation of labor through low wages or poor working conditions.</li>
15+
<li>Tax evasion or aggressive tax avoidance schemes.</li>
16+
<li>Neglecting safety standards to reduce costs.</li>
17+
<li>Lobbying for deregulation that benefits the corporation at societal expense.</li>
18+
</ul>
19+
<p className="text-gray-500 text-xs mt-3 italic">
20+
Often a central theme in critiques of capitalism and in dystopian narratives.
21+
</p>
22+
</div>
23+
);
24+
}

src/data/vocabulary.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,8 @@ export const vocabulary = {
1919
title: 'Side Effects',
2020
loader: () => import('./vocab/side-effects'),
2121
},
22+
'corporate-greed': {
23+
title: 'Corporate Greed',
24+
loader: () => import('./vocab/corporate-greed'),
25+
},
2226
};

0 commit comments

Comments
 (0)