Skip to content

Commit 6ad8307

Browse files
committed
chore: updated headshot & to-do
1 parent 0f4e66e commit 6ad8307

File tree

4 files changed

+18
-3
lines changed

4 files changed

+18
-3
lines changed

README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,20 @@
11
# steadyfall.github.io
22

3-
to-do:
3+
## color-palette
4+
main:
5+
- `text-pink-500`
6+
- `text-thunderbird-600`
7+
- `text-azure-radiance-600`
8+
- `text-neon-green-500 dark:text-neon-green-400`
9+
10+
across_colors:
11+
- `text-midnight-blue-500`
12+
- `text-pink-500`
13+
- `text-orange-500`
14+
- `text-blue-violet-500`
15+
16+
## to-do:
417
- [ ] check out about highlighting words
518
- [ ] YAML file parser for experience, projects
6-
- [ ] skills, education section
19+
- [x] skills, education section
720
- [x] projects in one column, instead of cards

public/images/headshot.jpg

320 KB
Loading

src/app/page.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ import About from '@/components/About'
66
import { Experiences } from '@/components/Experiences'
77
import { Projects } from '@/components/Projects'
88
import { Education } from '@/components/Education'
9+
import { Skills } from '@/components/Skills';
910
import Navbar from '@/components/Navbar';
1011

1112
export default function Portfolio() {
@@ -94,6 +95,7 @@ export default function Portfolio() {
9495
<Header />
9596
<main className="container mx-auto px-4 py-8 z-1">
9697
<About />
98+
<Skills />
9799
<Experiences arr={experiencesArray}/>
98100
<Education />
99101
<Projects arr={projectsArray}/>

src/components/Header.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ const Header = () => {
5454
<nav className="mt-8">
5555
<ul className="flex justify-center md:justify-start space-x-6 text-sm md:text-base">
5656
<li><a href="#about" className="hover:underline hover:underline-offset-4">About</a></li>
57-
{/* <li><a href="#skills" className="hover:underline hover:underline-offset-4">Skills</a></li> */}
57+
<li><a href="#skills" className="hover:underline hover:underline-offset-4">Skills</a></li>
5858
<li><a href="#experience" className="hover:underline hover:underline-offset-4">Experience</a></li>
5959
<li><a href="#education" className="hover:underline hover:underline-offset-4">Education</a></li>
6060
<li><a href="#projects" className="hover:underline hover:underline-offset-4">Projects</a></li>

0 commit comments

Comments
 (0)