File tree Expand file tree Collapse file tree 4 files changed +18
-3
lines changed Expand file tree Collapse file tree 4 files changed +18
-3
lines changed Original file line number Diff line number Diff line change 1
1
# steadyfall.github.io
2
2
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:
4
17
- [ ] check out about highlighting words
5
18
- [ ] YAML file parser for experience, projects
6
- - [ ] skills, education section
19
+ - [x ] skills, education section
7
20
- [x] projects in one column, instead of cards
Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ import About from '@/components/About'
6
6
import { Experiences } from '@/components/Experiences'
7
7
import { Projects } from '@/components/Projects'
8
8
import { Education } from '@/components/Education'
9
+ import { Skills } from '@/components/Skills' ;
9
10
import Navbar from '@/components/Navbar' ;
10
11
11
12
export default function Portfolio ( ) {
@@ -94,6 +95,7 @@ export default function Portfolio() {
94
95
< Header />
95
96
< main className = "container mx-auto px-4 py-8 z-1" >
96
97
< About />
98
+ < Skills />
97
99
< Experiences arr = { experiencesArray } />
98
100
< Education />
99
101
< Projects arr = { projectsArray } />
Original file line number Diff line number Diff line change @@ -54,7 +54,7 @@ const Header = () => {
54
54
< nav className = "mt-8" >
55
55
< ul className = "flex justify-center md:justify-start space-x-6 text-sm md:text-base" >
56
56
< 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 >
58
58
< li > < a href = "#experience" className = "hover:underline hover:underline-offset-4" > Experience</ a > </ li >
59
59
< li > < a href = "#education" className = "hover:underline hover:underline-offset-4" > Education</ a > </ li >
60
60
< li > < a href = "#projects" className = "hover:underline hover:underline-offset-4" > Projects</ a > </ li >
You can’t perform that action at this time.
0 commit comments