Skip to content

Commit e1ad3a3

Browse files
committed
Upgrade dependencies and change text
1 parent dd74c6b commit e1ad3a3

File tree

5 files changed

+6
-4
lines changed

5 files changed

+6
-4
lines changed

web/.astro/types.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
/// <reference types="astro/client" />

web/bun.lockb

5.06 KB
Binary file not shown.

web/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@
1313
"dependencies": {
1414
"@astrojs/check": "0.9.3",
1515
"@astrojs/tailwind": "5.1.0",
16-
"@midudev/tailwind-animations": "0.0.7",
17-
"astro": "4.14.6",
16+
"@midudev/tailwind-animations": "0.1.0",
17+
"astro": "4.15.2",
1818
"tailwindcss": "3.4.10",
1919
"typescript": "5.5.4"
2020
}

web/src/components/GitHubStar.astro

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ const starCounter = data.stargazers_count
3737
class="overflow-hidden flex flex-col h-8 items-center rounded-md bg-gray-100 px-4 font-medium text-xs justify-center group-hover:bg-yellow-200 transition w-36 relative"
3838
>
3939
<span class="absolute group-hover:animate-fade-out-up"
40-
>{`${starCounter} estrellas en GitHub`}</span
40+
>{`${starCounter} ⭐️ en GitHub`}</span
4141
>
4242
<span
4343
class="absolute opacity-0 -translate-y-5 group-hover:animate-fade-in-up"
44-
Dale una estrella!</span
44+
Deja tu estrella!</span
4545
>
4646
</div>
4747
</div>

web/src/env.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1+
/// <reference path="../.astro/types.d.ts" />
12
/// <reference types="astro/client" />

0 commit comments

Comments
 (0)