diff --git a/bun.lockb b/bun.lockb index 94df6a4..1831db8 100644 Binary files a/bun.lockb and b/bun.lockb differ diff --git a/package.json b/package.json index 6137851..2cf7a8e 100644 --- a/package.json +++ b/package.json @@ -9,9 +9,7 @@ "astro": "astro" }, "dependencies": { - "@types/react": "^18.3.4", - "@types/react-dom": "^18.3.0", - "astro": "^4.14.5", + "astro": "4.15.1", "material-symbols": "^0.22.2" }, "devDependencies": { diff --git a/src/pages/index.astro b/src/pages/index.astro index ef287ed..5fb8928 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -40,7 +40,7 @@ const projects = [ url: 'https://hackcuu.com', description: 'HackCUU 2017 MLH hackathon lead organizer.', image: await getImage({ src: hackcuuImage, format: 'avif' }), - } + }, ] const navItems = ['Home', 'Skills', 'Projects', 'Contact'] @@ -125,12 +125,12 @@ const socialNetworks = [ -
+
-
-
+
+

Jonas Perusquia Morales

@@ -161,37 +161,39 @@ const socialNetworks = [
- chevron_right + chevron_right
-
+

Skills & Expertise

{skills.map((skill) => ( -
-

{skill}

+
+

{skill}

))}
-
+

Featured Projects

-
+

Get in Touch

{ @@ -206,47 +208,7 @@ const socialNetworks = [
-

Made with favorite from Chihuahua, Mexico.

+

Made with ♥️ from Chihuahua, Mexico.

- - - - diff --git a/src/styles/global.scss b/src/styles/global.scss index 871800b..94b468b 100644 --- a/src/styles/global.scss +++ b/src/styles/global.scss @@ -4,6 +4,25 @@ @tailwind components; @tailwind utilities; @import 'material-symbols/index.css'; + +html { + scroll-behavior: smooth; +} + +.scale-image:hover { + & img { + @apply scale-110; + } +} + +@keyframes skill-background-change { + from { + @apply bg-grayblue-800; + } + to { + @apply bg-slate-300; + } +} // // SASS VARIABLES // // COLORS diff --git a/tailwind.config.ts b/tailwind.config.ts index 862c641..3b6d6f7 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -58,6 +58,7 @@ export default { sans: ['Inter', 'sans-serif'], }, animation: { + 'skill-background': 'skill-background-change 300ms ease-in-out 0s 1 both', typewriter: "typewriter 8s steps(23) -6s infinite alternate both, blinkTextCursor 800ms infinite normal", "fade-in": "fadeIn 800ms calc(var(--delay-index) * 0.5s) ease-out forwards",