-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ADD] Available button and academic styles
- Loading branch information
Showing
14 changed files
with
294 additions
and
370 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,42 @@ | ||
--- | ||
import AcademicItem from "./AcademicItem.astro"; | ||
import BookIcon from "../icons/Book.astro"; | ||
const { class: className } = Astro.props; | ||
const EXPERIENCE = [ | ||
{ | ||
date: "2023 - en curso", | ||
title: "Certified Tech Developer", | ||
company: "Digital House", | ||
description: | ||
"Carrera técnica desarrollador Full Stack diseñada en conjunto con Globant y Mercado Libre [Front End - Back End - Infraestructura - Bases de datos - Soft Skills].", | ||
}, | ||
{ | ||
date: "2020 - 2021", | ||
title: "Diploma Machine Learning and Data Science", | ||
company: "Universidad Nacional de Colombia", | ||
description: | ||
"Diplomado compuesto por las materias [Análisis y visualización de datos con Python, Introducción a machine learning con Python, Big Data].", | ||
}, | ||
{ | ||
date: "2011 - 2016", | ||
title: "Ingeniería Mecatrónica", | ||
company: "Universidad Nacional de Colombia", | ||
description: | ||
"Carrera profesional con énfasis en automatización industrial y desarrollo de software.", | ||
}, | ||
]; | ||
--- | ||
|
||
<div class={`${className}`}> | ||
<h3 class="flex items-center gap-x-2 text-2xl font-semibold text-white py-4"> | ||
<BookIcon class="size-8" /> Educación | ||
</h3> | ||
|
||
<ol class={`relative border-s border-gray-200 dark:border-gray-700 ml-3`}> | ||
{ | ||
EXPERIENCE.map((study, index) => { | ||
return <AcademicItem {...{ ...study, index }} />; | ||
}) | ||
} | ||
</ol> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
--- | ||
import CalendarIcon from "../icons/Calendar.astro"; | ||
interface Props { | ||
date: string; | ||
title: string; | ||
company: string; | ||
description: string; | ||
index: number; | ||
} | ||
const { date, title, company, description, index } = Astro.props; | ||
--- | ||
|
||
<li | ||
class={` | ||
border-l-2 | ||
${index == 0 ? "border-purple-600" : "border-green-600"}`} | ||
> | ||
<div class="md:flex flex-start"> | ||
<div | ||
class={`${ | ||
index == 0 ? "bg-purple-600" : "bg-green-600" | ||
} w-6 h-6 flex items-center justify-center rounded-full -ml-2.5 `} | ||
> | ||
<CalendarIcon class="text-white w-3 h-3" /> | ||
</div> | ||
<div class="block p-6 rounded-lg shadow-lg bg-gray-100 max-w-md ml-6 mb-10"> | ||
<div class="flex justify-between items-center mb-1"> | ||
<a | ||
href="#!" | ||
class="basis-4/6 text-sm md:text-lg font-bold text-purple-600 hover:text-purple-700 focus:text-purple-800 duration-300 transition ease-in-out" | ||
>{title}</a | ||
> | ||
<span | ||
class="font-medium text-purple-600 hover:text-purple-700 focus:text-purple-800 duration-300 transition ease-in-out text-sm" | ||
>{date}</span | ||
> | ||
</div> | ||
<p | ||
class="text-sm md:text-md font-semibold text-purple-600 hover:text-purple-700 focus:text-purple-800 duration-300 transition ease-in-out mb-3" | ||
> | ||
{company} | ||
</p> | ||
<p class="text-gray-700 mb-6"> | ||
{description} | ||
</p> | ||
<button | ||
type="button" | ||
class="inline-block px-4 py-1.5 bg-purple-600 text-white font-medium text-xs leading-tight uppercase rounded shadow-md hover:bg-purple-700 hover:shadow-lg focus:bg-purple-700 focus:shadow-lg focus:outline-none focus:ring-0 active:bg-purple-800 active:shadow-lg transition duration-150 ease-in-out" | ||
data-mdb-ripple="true">Preview</button | ||
> | ||
<button | ||
type="button" | ||
class="inline-block px-3.5 py-1 border-2 border-purple-600 text-purple-600 font-medium text-xs leading-tight uppercase rounded hover:bg-black hover:bg-opacity-5 focus:outline-none focus:ring-0 transition duration-150 ease-in-out" | ||
data-mdb-ripple="true">See demo</button | ||
> | ||
</div> | ||
</div> | ||
</li> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,25 @@ | ||
<footer class="max-w-6xl rounded-lg shadow m-4 bg-black/20 backdrop-blur-lg w-3/4 mx-auto mb-6"> | ||
--- | ||
import Heart from "../icons/Heart.astro"; | ||
--- | ||
|
||
<footer | ||
class={` | ||
w-11/12 max-w-6xl mx-auto mb-24 | ||
sm:mb-6 | ||
rounded-lg shadow m-4 bg-black/20 backdrop-blur-lg `} | ||
> | ||
<div | ||
class="w-full mx-auto max-w-screen-xl p-4 md:flex md:items-center md:justify-between" | ||
class={` | ||
max-w-screen-xl p-4 | ||
text-sm md:text-md text-yellow-200/90 | ||
flex items-center justify-center`} | ||
> | ||
<span class="text-sm sm:text-center text-yellow-200/90" | ||
>© 2024 <a | ||
href="https://www.linkedin.com/in/eolunas" | ||
class="hover:underline">eolunas</a | ||
>. All Rights Reserved. | ||
</span> | ||
<ul | ||
class="flex flex-wrap items-center mt-3 text-sm font-medium text-white/90 sm:mt-0" | ||
Coded with | ||
<Heart /> | ||
by | ||
<a class="hover:underline pl-1" href="https://www.linkedin.com/in/eolunas" | ||
target="_blank" | ||
>eolunas</a | ||
> | ||
<li> | ||
<a href="#" class="hover:underline me-4 md:me-6">Sobre mi</a> | ||
</li> | ||
<li> | ||
<a href="#" class="hover:underline">Contacto</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</footer> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
const { class: aditionalClass, href } = Astro.props; | ||
--- | ||
|
||
<a | ||
class={` | ||
rounded-lg shadow-lg shadow-green-500/50 | ||
relative flex justify-center items-center overflow-hidden p-[2px] | ||
transition duration-200 | ||
dark:shadow-lg dark:shadow-green-800/80 | ||
hover:scale-110 | ||
${aditionalClass}`} | ||
href={href} | ||
target="_blank" | ||
rel="noopener" | ||
> | ||
<span | ||
class="absolute inset-[-1000%] animate-[spin_2s_linear_infinite] bg-[conic-gradient(from_90deg_at_50%_50%,#E2CBFF_0%,#393BB2_50%,#E2CBFF_100%)]" | ||
></span> | ||
<span | ||
class={` | ||
h-full w-full rounded-lg p-2 backdrop-blur-3xl | ||
bg-gradient-to-r from-teal-700 to-lime-100 | ||
text-black/70 text-lg font-semibold text-center | ||
md:text-xl | ||
dark:text-green-100 dark:bg-gradient-to-br dark:from-green-400 dark:to-blue-600/50`} | ||
> | ||
<slot /> | ||
</span> | ||
</a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
<svg | ||
{...Astro.props} | ||
xmlns="http://www.w3.org/2000/svg" | ||
width="24" | ||
height="24" | ||
viewBox="0 0 24 24" | ||
stroke-width="2" | ||
stroke="currentColor" | ||
fill="none" | ||
stroke-linecap="round" | ||
stroke-linejoin="round" | ||
><path stroke="none" d="M0 0h24v24H0z" fill="none"></path><path | ||
d="M5 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z" | ||
></path><path | ||
d="M9 4m0 1a1 1 0 0 1 1 -1h2a1 1 0 0 1 1 1v14a1 1 0 0 1 -1 1h-2a1 1 0 0 1 -1 -1z" | ||
></path><path d="M5 8h4"></path><path d="M9 16h4"></path><path | ||
d="M13.803 4.56l2.184 -.53c.562 -.135 1.133 .19 1.282 .732l3.695 13.418a1.02 1.02 0 0 1 -.634 1.219l-.133 .041l-2.184 .53c-.562 .135 -1.133 -.19 -1.282 -.732l-3.695 -13.418a1.02 1.02 0 0 1 .634 -1.219l.133 -.041z" | ||
></path><path d="M14 9l4 -1"></path><path d="M16 16l3.923 -.98"></path></svg | ||
> |
Oops, something went wrong.