Skip to content

Commit

Permalink
feat: change de color and the header and bold the text
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael-Liendo committed Jun 3, 2024
1 parent 41183b3 commit 1426387
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/i18n/en/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const en = {
},
HOMEPAGE: {
HI: `Hi I'm {name:string} {surname:string},`,
ABOUT: `I'm a <strong>Software Developer</strong> focused on Svelte and TypeScript with a passion for Mobile Development and Websites. I enjoy working on challenging projects, value collaboration and problem-solving.`,
ABOUT: `I'm a <strong>Software Developer</strong> focused on Svelte and TypeScript with a passion for <strong>Mobile Development and Websites</strong>. I enjoy working on challenging projects, value collaboration and problem-solving.`,
LATEST_NOTES: 'Latest Notes',
},
} satisfies BaseTranslation;
Expand Down
2 changes: 1 addition & 1 deletion src/i18n/es/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const es = {
HOMEPAGE: {
HI: 'Hola soy {name:string} {surname:string},',
ABOUT:
'Soy un <strong>Desarrollador de Software</strong> enfocado en Svelte y TypeScript apasionado por el Desarrollo de Aplicaciones Móviles y Páginas Web. Disfruto trabajar en proyectos desafiantes, valoro la colaboración y la resolución de problemas.',
'Soy un <strong>Desarrollador de Software</strong> enfocado en Svelte y TypeScript apasionado por el <strong>Desarrollo de Aplicaciones Móviles y Páginas Web</strong>. Disfruto trabajar en proyectos desafiantes, valoro la colaboración y la resolución de problemas.',
LATEST_NOTES: 'Últimas notas',
},
} satisfies BaseTranslation;
Expand Down
8 changes: 2 additions & 6 deletions src/lib/components/Header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -66,12 +66,8 @@
</script>

<header class="px-5 sm:px-10 md:px-20 py-4 flex justify-between items-center">
<h1 class="text-xl hidden sm:block text-sky-900 dark:text-sky-500">
Michael Liendo
</h1>
<h1 class="text-xl block sm:hidden text-sky-900 dark:text-sky-500">
Michael L
</h1>
<h1 class="text-xl hidden sm:block">Michael Liendo</h1>
<h1 class="text-xl block sm:hidden">Michael L</h1>

<!-- only desktop -->
<nav class="flex">
Expand Down
2 changes: 1 addition & 1 deletion src/routes/[[lang=lang]]/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@
class="gradient absolute bottom-40 left-0 w-1/5 h-1/3 -z-20 bg-[rgba(102,199,216,0.47)] dark:bg-[rgba(65,153,211,0.3)] -rotate-12"
></div>
<div
class="gradient absolute bottom-20 left-64 w-1/5 h-1/3 -z-20 bg-[rgba(116,233,100,0.3)] dark:bg-[rgba(65,211,121,0.3)] -rotate-12"
class="gradient absolute bottom-20 left-64 w-1/5 h-1/3 -z-20 bg-[rgba(100,202,233,0.3)] dark:bg-[rgba(48,96,136,0.3)] -rotate-12"
></div>
</section>

Expand Down

0 comments on commit 1426387

Please sign in to comment.