File tree Expand file tree Collapse file tree 4 files changed +57
-12
lines changed Expand file tree Collapse file tree 4 files changed +57
-12
lines changed Original file line number Diff line number Diff line change @@ -10,8 +10,7 @@ const currentYear = new Date().getFullYear()
10
10
>
11
11
<span class =" text-sm sm:text-center text-zinc-800/90 dark:text-zinc-200/90"
12
12
>© { currentYear }
13
- <a href =" https://midu.dev/" class =" hover:underline" >Octavio Pereyra</a >.
14
- Casi todos los derechos reservados
13
+ Octavio Pereyra. Casi todos los derechos reservados
15
14
</span >
16
15
<ul
17
16
class =" flex flex-wrap items-center mt-3 text-sm font-medium dark:text-white/90 sm:mt-0"
Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ import ThemeToggle from './ThemeToggle.astro'
3
3
4
4
const navItems = [
5
5
{
6
- title: ' Experiencia ' ,
7
- label: ' experiencia ' ,
8
- url: ' /#experiencia ' ,
6
+ title: ' Skills ' ,
7
+ label: ' skills ' ,
8
+ url: ' /#skills ' ,
9
9
},
10
10
{
11
11
title: ' Proyectos' ,
Original file line number Diff line number Diff line change
1
+ ---
2
+ import Java from ' ./icons/Java.astro'
3
+ import Angular from ' ./icons/Angular.astro'
4
+ import NodeJS from ' ./icons/NodeJS.astro'
5
+ import Typescript from ' ./icons/Typescript.astro'
6
+ import Sql from ' ./icons/Sql.astro'
7
+ import DotNet from ' ./icons/DotNet.astro'
8
+
9
+ const SKILLS = [
10
+ {
11
+ lang: ' Java' ,
12
+ icon: Java ,
13
+ },
14
+ {
15
+ lang: ' .NET' ,
16
+ icon: DotNet ,
17
+ },
18
+ {
19
+ lang: ' Angular' ,
20
+ icon: Angular ,
21
+ },
22
+ {
23
+ lang: ' NodeJS' ,
24
+ icon: NodeJS ,
25
+ },
26
+ {
27
+ lang: ' Typescript' ,
28
+ icon: Typescript ,
29
+ },
30
+ {
31
+ lang: ' SQL' ,
32
+ icon: Sql ,
33
+ },
34
+ ]
35
+ ---
36
+
37
+ <div class =" flex flex-row justify-between items-center gap-8" >
38
+ {
39
+ SKILLS .map ((skill ) => (
40
+ <div class = " flex flex-col justify-center items-center gap-3 " >
41
+ <skill.icon class = " w-9 h-12" />
42
+ <span class = " text-base" >{ skill .lang } </span >
43
+ </div >
44
+ ))
45
+ }
46
+ </div >
Original file line number Diff line number Diff line change 2
2
import Layout from ' @/layouts/Layout.astro'
3
3
4
4
import AboutMe from ' @/components/AboutMe.astro'
5
- import Briefcase from ' @/components/icons/Briefcase .astro'
5
+ import Keyboard from ' @/components/icons/Keyboard .astro'
6
6
import CodeIcon from ' @/components/icons/Code.astro'
7
- import Experience from ' @/components/Experience .astro'
7
+ import Skills from ' @/components/Skills .astro'
8
8
import ProfileCheck from ' @/components/icons/ProfileCheck.astro'
9
9
import Projects from ' @/components/Projects.astro'
10
10
import SectionContainer from ' @/components/SectionContainer.astro'
@@ -21,15 +21,15 @@ import Hero from '@/components/Hero.astro'
21
21
</SectionContainer >
22
22
</main >
23
23
<div class =" space-y-24" >
24
- <!-- < SectionContainer id="experiencia ">
24
+ <SectionContainer id =" skills " >
25
25
<h2
26
26
class =" flex items-center mb-6 text-3xl font-semibold gap-x-3 text-black/80 dark:text-white"
27
27
>
28
- <Briefcase class="size-8" />
29
- Experiencia laboral
28
+ <Keyboard class =" size-8" />
29
+ Skills
30
30
</h2 >
31
- <Experience />
32
- </SectionContainer> -->
31
+ <Skills />
32
+ </SectionContainer >
33
33
34
34
<SectionContainer id =" proyectos" >
35
35
<h2
You can’t perform that action at this time.
0 commit comments