- {socialNetworks.map((socialNetwork, index) => {
+ {socialNetworks.map(socialNetwork => {
return (
diff --git a/src/styles/global.scss b/src/styles/global.scss
index 094522a..6ee7d39 100644
--- a/src/styles/global.scss
+++ b/src/styles/global.scss
@@ -48,4 +48,4 @@ body {
font-weight: var(--font-weight);
text-shadow: var(--font-shadow);
font-size: var(--font-size);
-}
+}
\ No newline at end of file
diff --git a/tailwind.config.cjs b/tailwind.config.cjs
index 14ed546..c653b57 100644
--- a/tailwind.config.cjs
+++ b/tailwind.config.cjs
@@ -15,8 +15,7 @@ module.exports = {
},
extend: {
animation: {
- typewriter: "typewriter 5s steps(23) 0s infinite alternate both",
- blinking: "blinkTextCursor 800ms infinite normal",
+ 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",
},
@@ -32,9 +31,9 @@ module.exports = {
},
},
typewriter: {
- "0%": { width: "0" },
- "20%": { width: "0" },
- "80%": { width: "100%" },
+ "0%": { width: "0%" },
+ "37.5%": { width: "0%" },
+ "62.5%": { width: "100%" },
"100%": { width: "100%" },
},
blinkTextCursor: {