Skip to content

Commit dcf7444

Browse files
committed
add screenshots for more projects
1 parent 89e9c1e commit dcf7444

File tree

18 files changed

+200
-13
lines changed

18 files changed

+200
-13
lines changed

src/components/ProjectCard.astro

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ const { lastAccessDate, isUpdatedDate } = getPublishedOrUpdatedDate({
3030
{...IMAGE_SIZES.RESPONSIVE.PROJECT_CARD}
3131
src={heroImage}
3232
alt={heroAlt}
33-
class="rounded-t-box shadow shadow-base-300 mb-2"
33+
class="aspect-video object-cover rounded-t-box shadow shadow-base-300 mb-2"
3434
/>
3535

3636
<h4 class="b-h4 break-words line-clamp-2 mb-0">

src/content/project/2023/02-13-example-project-1/index.mdx renamed to src/content/project/2014/02-13-example-project-1/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
---
22
title: This is the first project
33
description: Description of the first project
4-
heroImage: '../../../../content/project/2023/02-13-example-project-1/_images/flowers-store.jpg'
4+
heroImage: '../../../../content/project/2014/02-13-example-project-1/_images/flowers-store.jpg'
55
heroAlt: Flowers store
6-
publishDate: 2023-02-13
6+
publishDate: 2014-02-13
77
---
88

99
import { Image } from 'astro:assets';
1010

1111
import { IMAGE_SIZES } from '../../../../constants/image';
1212

13-
import FlowersImage from '../../../../content/project/2023/02-13-example-project-1/_images/flowers-store.jpg';
13+
import FlowersImage from '../../../../content/project/2014/02-13-example-project-1/_images/flowers-store.jpg';
1414

1515
# This is the first project
1616

src/content/project/2023/03-15-example-project-2/index.mdx renamed to src/content/project/2014/03-15-example-project-2/index.mdx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
22
title: This is the second project
33
description: Description of the second project
4-
heroImage: '../../../../content/project/2023/03-15-example-project-2/_images/cyco5.jpg'
4+
heroImage: '../../../../content/project/2014/03-15-example-project-2/_images/cyco5.jpg'
55
heroAlt: This is bicycle
6-
publishDate: 2023-03-15
7-
updatedDate: 2023-04-21
6+
publishDate: 2014-03-15
7+
updatedDate: 2014-04-21
88
---
99

1010
import { Image } from 'astro:assets';
1111

1212
import { IMAGE_SIZES } from '../../../../constants/image';
1313

14-
import BicycleImage from '../../../../content/project/2023/03-15-example-project-2/_images/cyco5.jpg';
14+
import BicycleImage from '../../../../content/project/2014/03-15-example-project-2/_images/cyco5.jpg';
1515

1616

1717
# This is the second project

src/content/project/2023/05-16-example-project-3/index.mdx renamed to src/content/project/2014/05-16-example-project-3/index.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
---
22
title: This is the third project
33
description: Description of the third project
4-
heroImage: '../../../../content/project/2023/05-16-example-project-3/_images/morning1.jpg'
5-
publishDate: 2023-05-16
4+
heroImage: '../../../../content/project/2014/05-16-example-project-3/_images/morning1.jpg'
5+
publishDate: 2014-05-16
66
---
77

88
import { Image } from 'astro:assets';
99

1010
import { IMAGE_SIZES } from '../../../../constants/image';
1111

12-
import MorningImage from '../../../../content/project/2023/05-16-example-project-3/_images/morning1.jpg';
12+
import MorningImage from '../../../../content/project/2014/05-16-example-project-3/_images/morning1.jpg';
1313

1414
# This is the third project
1515

src/content/project/2019/.gitkeep

Whitespace-only changes.
331 KB
Loading
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
---
2+
title: Redux ecommerce
3+
description: Browser extension for comments on Reddit.
4+
heroImage: '../../../../content/project/2019/09-29-redux-ecommerce/_images/redux-ecommerce.png'
5+
heroAlt: Homepage Redux ecommerce
6+
publishDate: 2019-09-29
7+
---
8+
9+
import { Image } from 'astro:assets';
10+
import Link from '../../../../components/Link.astro';
11+
import { IMAGE_SIZES } from '../../../../constants/image';
12+
import ReduxEcommerceImage from '../../../../content/project/2019/09-29-redux-ecommerce/_images/redux-ecommerce.png';
13+
14+
# Redux ecommerce
15+
16+
<Image {...IMAGE_SIZES.FIXED.MDX_LG} src={ReduxEcommerceImage} 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/redux-ecommerce" variant="markdown" target="_blank" title="README.md">README.md</Link> file on Github.
37+
38+
## Lessons learned
39+
40+
- Currently Astro is the best framework for building static websites.
41+
42+
## Links
43+
44+
- **Demo:** <Link href="https://nemanjam.github.io/redux-ecommerce" variant="markdown" target="_blank" title="Redux ecommerce demo" />
45+
- **Repository:** <Link href="https://github.com/nemanjam/redux-ecommerce" variant="markdown" target="_blank" title="Redux ecommerce repository" />
46+
47+

0 commit comments

Comments
 (0)