Skip to content

Commit 96925c4

Browse files
committed
fix: update astro version to 5.7.13 and add tailwindcss-animated dependency
style: enhance header animations for improved user experience
1 parent 1e46ae5 commit 96925c4

4 files changed

Lines changed: 14 additions & 9 deletions

File tree

bun.lock

Lines changed: 5 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,13 +9,14 @@
99
"astro": "astro"
1010
},
1111
"dependencies": {
12-
"astro": "5.7.12",
12+
"astro": "5.7.13",
1313
"material-symbols": "^0.31.2"
1414
},
1515
"devDependencies": {
1616
"@biomejs/biome": "^1.9.4",
1717
"@tailwindcss/vite": "^4.1.6",
18-
"tailwindcss": "^4.1.6"
18+
"tailwindcss": "^4.1.6",
19+
"tailwindcss-animated": "^2.0.0"
1920
},
2021
"trustedDependencies": [
2122
"@biomejs/biome",

src/pages/index.astro

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ const projects = [
5353
<section id="home" class="py-8 scroll-mt-20">
5454
<div class="flex flex-col items-center lg:flex-row lg:justify-between">
5555
<div class="mb-8 text-center lg:mb-0 lg:text-left lg:w-1/2">
56-
<h1 class="mb-4 text-5xl font-medium">Jonas Perusquia Morales</h1>
57-
<h2 class="mb-6 text-2xl font-light text-blue-300">Chief Technology Officer</h2>
58-
<p class="max-w-2xl text-xl text-grayblue-300">
56+
<h1 class="mb-4 text-5xl font-medium animate-fade-up animate-delay-300">Jonas Perusquia Morales</h1>
57+
<h2 class="mb-6 text-2xl font-light text-blue-300 animate-fade-up animate-delay-600">Chief Technology Officer</h2>
58+
<p class="max-w-2xl text-xl text-grayblue-300 animate-fade-up animate-delay-900">
5959
Innovative tech leader with a passion for building scalable solutions and fostering high-performing teams.
6060
</p>
61-
<div class="flex gap-4 mt-6 justify-center lg:justify-start">
61+
<div class="flex gap-4 mt-6 justify-center lg:justify-start animate-fade-up animate-delay-1200">
6262
{
6363
socialNetworks.map(socialNetwork => (
6464
<a aria-label={socialNetwork.name} href={socialNetwork.url} class="text-grayblue-300 hover:text-blue-300 transition-transform hover:scale-110">
@@ -70,7 +70,7 @@ const projects = [
7070
}
7171
</div>
7272
</div>
73-
<div class="relative h-64 w-64 overflow-hidden rounded-full border-4 border-blue-300 lg:h-80 lg:w-80">
73+
<div class="relative h-64 w-64 overflow-hidden rounded-full border-4 border-blue-300 lg:h-80 lg:w-80 animate-fade-up animate-delay-1600">
7474
<Image
7575
src={profilePicture}
7676
alt="Jonas Perusquia Morales"

src/styles/global.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* @import url("https://fonts.googleapis.com/css?family=Nunito"); */
22
@charset "utf-8";
33
@import 'tailwindcss';
4+
@import "tailwindcss-animated";
45
@import 'material-symbols' layer(utilities);
56

67
@theme {

0 commit comments

Comments
 (0)