diff --git a/src/components/Home/Hero/HeroText.astro b/src/components/Home/Hero/HeroText.astro
index 7256ec5e..60d44d31 100644
--- a/src/components/Home/Hero/HeroText.astro
+++ b/src/components/Home/Hero/HeroText.astro
@@ -4,7 +4,7 @@ import Wave from "./Wave.astro";
Hi there
@@ -16,7 +16,7 @@ import Wave from "./Wave.astro";
Software Developer
Researcher
diff --git a/tailwind.config.cjs b/tailwind.config.cjs
index 943f65ff..30980565 100644
--- a/tailwind.config.cjs
+++ b/tailwind.config.cjs
@@ -57,10 +57,22 @@ module.exports = {
opacity: 1,
},
},
+ "slide-in-no-scale": {
+ from: {
+ transform: "translateY(100px)",
+ opacity: 0,
+ },
+ to: {
+ transform: "translateY(0)",
+ opacity: 1,
+ },
+ },
},
animation: {
"slide-in":
"slide-in-bottom 0.75s cubic-bezier(0.250, 0.460, 0.450, 0.940) both",
+ "slide-in-no-scale":
+ "slide-in-no-scale 0.75s cubic-bezier(0.250, 0.460, 0.450, 0.940) both",
},
fontFamily: {
sans: ["Inter Variable", ...defaultTheme.fontFamily.sans],