Skip to content

Commit

Permalink
feat(home): improve desing
Browse files Browse the repository at this point in the history
  • Loading branch information
pablosirera committed Jul 4, 2020
1 parent c3bf3a4 commit 0b5b776
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion components/Logo.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<template>
<img
class="w-20 h-20 rounded-full nuxt-logo"
class="w-20 h-20 rounded-full nuxt-logo border-6 border-primary"
src="https://res.cloudinary.com/de5xzoviz/image/upload/c_scale,q_58,w_640/v1592684920/IMG_6225_brctd5.jpg"
:alt="$t('general.altLogo')"
/>
Expand Down
4 changes: 2 additions & 2 deletions components/ui/TheHeader.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<template>
<header class="py-5 bg-green-main-100">
<header class="py-5">
<div class="container flex justify-between items-center">
<div class="flex items-center">
<nuxt-link to="/">
Expand Down Expand Up @@ -60,6 +60,6 @@ export default {
}
.link.nuxt-link-active {
@apply text-gray-main-600 underline;
@apply text-gray-main-600 border-b-4 border-primary pb-2;
}
</style>
2 changes: 2 additions & 0 deletions pages/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
<div>
<!-- TODO: translate and change this text -->
<h1 class="text-3xl font-semibold">Hola 👋, soy Pablo Sirera</h1>
<div class="divider h-2 w-24 bg-primary my-3" />
<p>
Soy Senior Frontend y actualmente estoy enfocado al mundo del desarrollo
web con Vue, Nuxt, JavaScript y Jest, entre otros. Además también he
hecho proyectos con Ionic, Angular, React, TypeScript.
</p>
<br />
<p>
En mis ratos libres creo proyectos open source (los podéis encontrar en
mi cuenta de github) y comparto conocimiento en twitch y youtube. De vez
Expand Down
4 changes: 4 additions & 0 deletions tailwind.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ module.exports = {
theme: {
extend: {
colors: {
primary: '#9bd681',
'yellow-main': {
500: '#f1e05a',
},
Expand All @@ -26,6 +27,9 @@ module.exports = {
800: '#2c3e50',
},
},
borderWidth: {
6: '6px',
},
},
},
variants: {},
Expand Down

0 comments on commit 0b5b776

Please sign in to comment.