Skip to content

Commit 89e9c1e

Browse files
committed
reddit project in progress
1 parent 6c79856 commit 89e9c1e

File tree

5 files changed

+49
-2
lines changed

5 files changed

+49
-2
lines changed

src/constants/metadata.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ export const PAGE_METADATA = {
5252
// src/pages/blog/categories/[category]/[...page].astro
5353
'lists/projects': {
5454
title: 'Projects',
55-
description: 'Ad duis incididunt reprehenderit elit in enim amet dolor.',
55+
description: 'Projects I have built over the past years.',
5656
},
5757
'lists/links': {
5858
title: 'Links',

src/content/project/.gitkeep

Whitespace-only changes.
260 KB
Loading
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
title: Reddit unread comments
3+
description: Browser extension for comments on Reddit.
4+
heroImage: '../../../../content/project/2024/05-06-reddit-unread-comments/_images/reddit-unread-comments.png'
5+
heroAlt: Reddit unread comments browser extension
6+
publishDate: 2024-05-06
7+
---
8+
9+
import { Image } from 'astro:assets';
10+
import Link from '../../../../components/Link.astro';
11+
import { IMAGE_SIZES } from '../../../../constants/image';
12+
import RedditUnreadCommentsImage from '../../../../content/project/2024/05-06-reddit-unread-comments/_images/reddit-unread-comments.png';
13+
14+
# Reddit unread comments
15+
16+
<Image {...IMAGE_SIZES.FIXED.MDX_LG} src={RedditUnreadCommentsImage} class="shadow-lg shadow-base-300" alt="Reddit unread comments browser extension" />
17+
18+
## Overview
19+
20+
Chrome/Firefox extension for easier tracking of new comments on Reddit.
21+
22+
## Goal
23+
24+
Build a custom blog script for my personal coding blog.
25+
26+
## Tech stack
27+
28+
- Browser extension, React, RadixUI, Typescript
29+
30+
## Features
31+
32+
- Static Astro website
33+
34+
## Implementation details
35+
36+
You can find more implementation details in the <Link href="https://github.com/nemanjam/reddit-unread-comments#documentation" variant="markdown" target="_blank" title="Documentation">Documentation</Link> section on Github.
37+
38+
## Lessons learned
39+
40+
- Currently Astro is the best framework for building static websites.
41+
42+
## Links
43+
44+
- **Demo video:** <Link href="https://www.youtube.com/watch?v=dHw0pM3ZzqY" variant="markdown" target="_blank" title="Developer blog demo" />
45+
- **Repository:** <Link href="https://github.com/nemanjam/reddit-unread-comments" variant="markdown" target="_blank" title="Developer blog repository" />
46+
47+

src/content/project/2024/09-30-developer-blog/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Developer blog
3-
description: Insights into HackerNews "Who's Hiring" thread.
3+
description: Developer blog Astro static website.
44
heroImage: '../../../../content/project/2024/09-30-developer-blog/_images/developer-blog.png'
55
heroAlt: Homepage Developer blog
66
publishDate: 2024-09-30

0 commit comments

Comments
 (0)