Skip to content

Commit 11d057d

Browse files
pr request
1 parent a51e1c3 commit 11d057d

8 files changed

Lines changed: 31 additions & 39 deletions

File tree

app/resume/page.tsx

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { createPageMetadata } from '@/lib/metadata';
1515

1616
export const metadata: Metadata = createPageMetadata({
1717
title: 'Resume',
18-
description: "Eliakim Chris Omari's resume independent developer.",
18+
description: "Eliakim Chris Omari's resume independent developer.",
1919
path: '/resume/',
2020
});
2121

@@ -26,9 +26,7 @@ export default function ResumePage() {
2626
<header className="resume-header">
2727
<h1 className="resume-title">Resume</h1>
2828
<p className="resume-summary">
29-
Independent developer working with Python, TypeScript, and Adobe
30-
Photoshop—shipping incrementally and keeping the resume in sync in{' '}
31-
<code>src/data/resume/</code>.
29+
building....{' '}
3230
</p>
3331
</header>
3432

src/components/Template/Hero.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,8 @@ export default function Hero() {
1515
</h1>
1616

1717
<p className="hero-tagline">
18-
Independent developer working across code and design—Python,
19-
TypeScript, and Adobe Photoshop. This site is my portfolio, resume,
20-
and writing in one place.
18+
Independent self-taught developer (Starting university in September 2026 hopefully) working across code and design : Python,
19+
TypeScript, and Adobe Photoshop.
2120
<br />
2221
Reach me anytime via the{' '}
2322
<Link href="/contact" className="hero-highlight">
@@ -30,6 +29,7 @@ export default function Hero() {
3029
<span className="hero-chip">Python</span>
3130
<span className="hero-chip">TypeScript</span>
3231
<span className="hero-chip">Adobe Photoshop</span>
32+
<span className="hero-chip">Audacity</span>
3333
</div>
3434

3535
<div className="hero-cta">

src/components/Template/Navigation.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export default function Navigation() {
1919
return (
2020
<header className="site-header">
2121
<Link href="/" className="site-logo">
22-
<span className="logo-text">MD</span>
22+
<span className="logo-text">ECO</span>
2323
</Link>
2424

2525
<nav className="nav-links">

src/components/__tests__/Template/Footer.test.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ describe('Footer', () => {
1616

1717
expect(screen.getByText('Eliakim Chris Omari')).toBeInTheDocument();
1818
expect(
19-
screen.getByText('Software developer at Independent'),
19+
screen.getByText('Software developer'),
2020
).toBeInTheDocument();
2121
});
2222

src/data/about.ts

Lines changed: 15 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,42 +1,37 @@
11
export const aboutMarkdown = `# Intro
22
3-
I'm **Eliakim Chris Omari**, an independent developer who works with **Python**, **TypeScript**, and **Adobe Photoshop**—from scripts and apps to visuals that match the product. This site holds my [resume](/resume/), [writing](/writing/), and [contact](/contact/) details.
3+
I build things with Python, TypeScript, and Adobe Photoshop. Most of my projects are solutions to problems I've encountered in my daily life and my hobbies.
44
5-
The layout and structure here follow the style of the [open-source portfolio](https://github.com/mldangelo/personal-site) by [Michael D'Angelo](https://mldangelo.com); I've adapted the copy for my own story.
65
76
# Some History
87
9-
- I like tools that stay predictable, projects that teach something new, and shipping work I can stand behind.
10-
- Python is my go-to for automation, data-shaped problems, and backend ideas; TypeScript is where I build interfaces and web experiences I want to maintain.
11-
- Photoshop is part of how I think about layout, imagery, and polish—not only for mockups but for assets that ship.
12-
- This site itself is a static Next.js export: fast, easy to host on GitHub Pages, and simple to iterate.
8+
- Born and raised in DRC, moved to Finland in my late teens.
9+
- At 5 years old, I played super mario bros for the first time and fell in love with it.
10+
- At 7 years old, I touched a smartphone for the first time and I couldn't put it down. In my head, I couldn't stop thinking about how it worked. That is when my curiosity for technology started.
11+
- At 12 years old, I made a deal with a cafetaria owner to deliver his food every day so I can use internet for free. That was when I started to learn graphic desing.
12+
- Growing up, I was afraid of programming because I thought it was reserved for poeple gifted in math. I thought that algorithms were an extremely conplex subject reserved for the top 1%.
13+
- My first programming language was dart.
1314
1415
# I Like
1516
16-
- Readable code and small, safe refactors.
17-
- Typography and color used with intention (dark mode when the theme earns it).
18-
- Long-form posts that save the next reader time.
19-
- Side quests that combine code and design.
17+
- Taking walks.
18+
- Listening to congolese music.
19+
- Books.
20+
- Mathematics.
21+
- Game of thrones, Naruto and Attack on Titan.
22+
- Late drives.
2023
21-
# Travel / Geography
22-
23-
Add places you've lived, visited, or want to revisit—this section is yours to grow in \`src/data/about.ts\`.
2424
2525
# Fun Facts
2626
27-
- I treat this page as a living draft: it should stay honest as projects and priorities change.
28-
- If something here is out of date, that's a nudge to update it.
27+
- I couldn't bike till 14.
28+
2929
30-
# I Dream Of
3130
32-
- Building things people trust and actually enjoy using.
33-
- Staying curious across stack and craft.
34-
- Collaborating with people who care about the details.
3531
3632
# Websites from People I Admire
3733
3834
- [Michael D'Angelo](https://mldangelo.com) — author of the template this site started from.
39-
- Add friends, mentors, and sites you return to; if you belong here, ping me and I'll add you.
4035
4136
If we know each other and you feel like you belong on this list, you're probably right. Submit a PR, or ask me, and I'll add you.
4237
`;

src/data/resume/work.ts

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,12 +13,11 @@ export interface Position {
1313

1414
const work: Position[] = [
1515
{
16-
name: 'Independent',
17-
position: 'Software developer',
16+
name: 'independent',
17+
position: 'Software engeneering',
1818
url: 'https://eliachrist.com',
19-
startDate: '2020-01-01',
20-
summary: `Independent work across Python, TypeScript, and Adobe Photoshop—replace
21-
this entry in src/data/resume/work.ts with your roles and employers.`,
19+
startDate: '2023-12-01',
20+
summary: ``,
2221
},
2322
];
2423

src/data/stats/personal.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { useEffect, useState } from 'react';
55
import type { StatData } from '../../components/Stats/types';
66

77
/** Birth date for age calculation (ISO format). Update in src/data/stats/personal.tsx. */
8-
const BIRTH_DATE = '1995-01-01T12:00:00';
8+
const BIRTH_DATE = '2003-12-04T12:00:00';
99

1010
/** Milliseconds in an average year (accounting for leap years) */
1111
const MS_PER_YEAR = 1000 * 60 * 60 * 24 * 365.2421897;
@@ -46,12 +46,12 @@ const data: StatData[] = [
4646
{
4747
key: 'countries',
4848
label: 'Countries visited',
49-
value: 0,
49+
value: 5,
5050
},
5151
{
5252
key: 'location',
5353
label: 'Current city',
54-
value: '',
54+
value: 'Helsinki',
5555
},
5656
];
5757

src/data/stats/site.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ const data: StatData[] = [
3838
{
3939
label: 'Last updated at',
4040
key: 'pushed_at',
41-
link: 'https://github.com/eliachrist/personal-site/commits',
41+
link: 'https://github.com/magnificentelia/personal-site/commits',
4242
format: (x: unknown) => dayjs(x as string).format('MMMM DD, YYYY'),
4343
},
4444
{
4545
label: 'Lines of TypeScript powering this website',
4646
value: '—',
47-
link: 'https://github.com/eliachrist/personal-site/graphs/contributors',
47+
link: 'https://github.com/magnificentelia/personal-site/graphs/contributors',
4848
},
4949
];
5050

0 commit comments

Comments
 (0)