Skip to content

Commit d0358e1

Browse files
committed
update
1 parent 3446f32 commit d0358e1

File tree

6 files changed

+74
-18
lines changed

6 files changed

+74
-18
lines changed

assets/contributions.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
[
2+
{
3+
"title": "Discord Developer Documentation",
4+
"description": "The Discord developer platform lets you develop apps to customize and extend Discord for millions of users.",
5+
"url": "https://discord.com/developers/docs/intro",
6+
"date": "2020-2022"
7+
},
8+
{
9+
"title": "eris",
10+
"description": "A NodeJS Discord library. Eris has over 1.5k stars on GitHub!",
11+
"url": "https://abal.moe/Eris/",
12+
"date": "2019-2021"
13+
},
14+
{
15+
"title": "wave",
16+
"description": "A Rainmeter-like widget platform powered by Electron!",
17+
"url": "https://github.com/thewaveorg/wave",
18+
"date": "2021"
19+
}
20+
]

assets/index.css

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,14 +71,15 @@ svg:hover {
7171
.main-hdr {
7272
align-items: center;
7373
background-color: var(--header);
74-
box-shadow: 0 0 1rem 0 rgb(0, 0, 0, .25);
7574
display: flex;
75+
filter: drop-shadow(0 0 0.5rem #00000040);
7676
height: 4rem;
7777
justify-content: space-between;
7878
padding: 0 .5rem;
7979
position: sticky;
8080
top: 0;
8181
width: 100%;
82+
z-index: 1;
8283
}
8384

8485
.header-icon {
@@ -178,10 +179,11 @@ svg:hover {
178179
background-color: var(--header);
179180
display: flex;
180181
color: var(--sub);
181-
text-align: center;
182+
filter: drop-shadow(0 0 0.5rem #00000040);
182183
flex-direction: column;
183184
justify-content: center;
184185
padding: 4rem;
186+
text-align: center;
185187
}
186188

187189
.main-ftr nav ul {
@@ -302,16 +304,19 @@ p img {
302304

303305
.scroll-to-top {
304306
--h: var(--theme);
305-
position: fixed;
306-
left: 1rem;
307307
bottom: 1rem;
308308
height: 3rem;
309+
left: 1rem;
310+
position: fixed;
309311
width: 3rem;
312+
z-index: 1;
310313
}
311314

312315
article {
316+
background-color: var(--dark);
313317
border-radius: .5rem;
314-
padding: .25rem 1rem;
318+
padding: .125rem 1.5rem;
319+
margin: 1rem 0;
315320
}
316321

317322
article:hover {

assets/projects.json

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
[
2+
{
3+
"title": "bluejay",
4+
"description": "Create a book with MDX, JSX components, and Bun. Fun fact: My personal website was built using bluejay.",
5+
"url": "https://github.com/apacheli/bluejay",
6+
"date": "2024-present"
7+
},
8+
{
9+
"title": "discord-api-libs",
10+
"description": "A curated list of open-source libraries for interacting with Discord's API.",
11+
"url": "https://github.com/apacheli/discord-api-libs",
12+
"date": "2020-present"
13+
},
14+
{
15+
"title": "whirlybird",
16+
"description": "A JavaScript library for making Discord bots.",
17+
"url": "https://github.com/apacheli/whirlybird",
18+
"date": "2020-present"
19+
},
20+
{
21+
"title": "yttv",
22+
"description": "Makes YouTube TV work in your web browser. It's the same interface when using YouTube on a gaming console.",
23+
"url": "https://github.com/apacheli/yttv",
24+
"date": "2022"
25+
},
26+
{
27+
"title": "watch_only",
28+
"description": "A Firefox add-on that redirects you from YouTube Shorts to the original YouTube video player.",
29+
"url": "https://github.com/apacheli/watch_only",
30+
"date": "2022"
31+
}
32+
]

components/Page.jsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,9 @@ export default ({ title, description, children }) => {
2323
<body>
2424
<Header title={title} />
2525
<main class="content">{children}</main>
26-
<a href="#" class="scroll-to-top">{AngleUp.default}</a>
26+
<a href="#" class="scroll-to-top">
27+
{AngleUp.default}
28+
</a>
2729
<Footer />
2830
</body>
2931
</html>

pages/blog/post.mdx

Lines changed: 0 additions & 8 deletions
This file was deleted.

pages/index.mdx

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
11
import Clickable from "../components/Clickable.jsx"
2+
import contributions from "../assets/contributions.json"
3+
import projects from "../assets/projects.json"
24

35
export const title = "home"
46
export const description = "Web and Software Developer"
@@ -7,10 +9,13 @@ export const description = "Web and Software Developer"
79

810
# Hello, I'm apacheli.
911

10-
Hello, I'm apacheli, a web and software developer.
12+
Hello, I'm apacheli, a web and software developer. I primarily work with backend
13+
software such as [Node.js](https://nodejs.org/en) and [Bun](https://bun.sh/).
1114

1215
## Projects
1316

14-
<Clickable title="bluejay" description="Create a book with MDX, JSX components, and Bun" url="https://github.com/apacheli/bluejay" date="2024" />
15-
<Clickable title="discord-api-libs" description="List of open-source Discord API Libraries" url="https://github.com/apacheli/discord-api-libs" date="2020" />
16-
<Clickable title="whirlybird" description="A JavaScript library for making Discord bots." url="https://github.com/apacheli/whirlybird" date="2020" />
17+
{projects.map((project) => <Clickable {...project} />)}
18+
19+
## Open-Source Contributions
20+
21+
{contributions.map((project) => <Clickable {...project} />)}

0 commit comments

Comments
 (0)