Skip to content

Commit

Permalink
add component profile
Browse files Browse the repository at this point in the history
  • Loading branch information
devestevenson committed May 6, 2024
1 parent 4236fd2 commit 4055bc4
Show file tree
Hide file tree
Showing 3 changed files with 136 additions and 2 deletions.
26 changes: 26 additions & 0 deletions src/components/UI/ProjectCard.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
---
interface Props {
href: string;
text: string;
icon: string;
}
const { href, text, icon } = Astro.props;
---

<section>
<a href={href} target="_blank" class="w-full bg-[#ededed] p-6 rounded flex justify-between items-center">
<span class="text-base">{text}</span>
<span class="text-base sp">{icon}</span>
</a>
</section>

<style>
a:hover .sp {
transform: translateY(-4px);
transition: 300ms ease;
}
</style>

<script>
</script>
107 changes: 107 additions & 0 deletions src/components/sections/Perfile.astro
Original file line number Diff line number Diff line change
@@ -0,0 +1,107 @@
---
import ProjectCard from "../UI/ProjectCard.astro"
---

<main class="w-full max-w-[491px]">
<header class="grid gap-3 mb-10">
<h1 class="text-base">
Hola, soy
<span class="font-semibold">Estevenson,</span>
<span class="font-semibold">Diseñador UX/UI Junior</span>
</h1>
<p class="max-w-[491px] text-base">
Disfruto diseñar productos y servicios digitales: aplicaciones web
y móviles, sitios web, tiendas virtuales, entre otros, con el objetivo
de mejorar la experiencia del usuario.
</p>
</header>

<section class="grid gap-3 mb-10">
<h2 class="text-base font-semibold">Habilidades</h2>
<p class="max-w-[487px] text-base">
Durante mi formación, he adquirido habilidades que me permiten
diseñar y desarrollar proyectos.
</p>
<article>
<p class="text-base font-semibold">Diseño web</p>
<ul>
<li class="text-base">Figma</li>
<li class="text-base">Adobe XD</li>
<li class="text-base">Photoshop</li>
</ul>
</article>

<article>
<p class="text-base font-semibold">Diseño web</p>
<ul>
<li class="text-base">HTML</li>
<li class="text-base">CSS</li>
<li class="text-base">JavaScript</li>
<li class="text-base">React</li>
<li class="text-base">TailwindCSS</li>
</ul>
</article>
</section>

<section class="grid gap-3 mb-10">
<h2 class="font-semibold text-base">Trabajos realizados</h2>
<p class="max-w-[487px] text-base">
Te invito a echar un vistazo a mi portafolio para descubrir cómo
he combinado mis habilidades en diseño y desarrollo para crear
sitios web funcionales que cumplen con los objetivos de la marca.
</p>
<ProjectCard
href="https://devestevenson.github.io/"
text="Web personal"
icon=""
/>
<ProjectCard
href="https://www.codigoc13.com/"
text="Escuela Código C13"
icon=""
/>
</section>

<section class="grid gap-3 mb-10">
<h2 class="font-semibold text-base">Envíame un mensaje</h2>
<p class="max-w-[478px] text-base">
Estoy dando mis primeros pasos, espero participar en proyectos
donde pueda aplicar mis conocimientos y experiencias para
contribuir al éxito de cada producto.
</p>
</section>

<footer class="grid gap-5">
<ul class="flex flex-col gap-2">
<a href="tel:+">(+57) 302 244 4817</a>
<a href="mailto:">[email protected]</a>
</ul>
<ul class="flex flex-col gap-2">
<a href="">Linkedin</a>
<a href="">Behance</a>
<a href="">Github</a>
<a href="">Youtube</a>
</ul>
</footer>
</main>

<style>
a {
position: relative;
transition: 300ms ease;
width: fit-content;
}
a::before {
content: "";
position: absolute;
top: 100%;
left: 0;
width: 0;
height: 1px;
background-color: black;
transition: 300ms ease;
}
a:hover::before {
width: 100%;
}
</style>
5 changes: 3 additions & 2 deletions src/pages/index.astro
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
---
import Layout from '../layouts/Layout.astro';
import Perfile from '@/components/sections/Perfile.astro';
---

<Layout title="devestevenson — diseñador web">
<main>

<main class="w-full h-auto flex justify-center px-4 py-6 tablaptop:py-20">
<Perfile/>
</main>
</Layout>

Expand Down

0 comments on commit 4055bc4

Please sign in to comment.