diff --git a/src/web/src/components/hero/content.jsx b/src/web/src/components/hero/content.jsx
index d230fed..52417fe 100644
--- a/src/web/src/components/hero/content.jsx
+++ b/src/web/src/components/hero/content.jsx
@@ -11,20 +11,49 @@ function Content() {
Hello, I'm
Timothy Pidashev",
- "I'm a 19 year old
on an epic journey to
become a software engineer!",
- "I enjoy:
writing code
hiking and camping
driving cars
and much more!",
- "Fun facts about me:
I keep a journal
I love rust lang!
I use a corebooted thinkpad",
- "Wait your still here?",
- "Check out my blog and shop
for many goodies!
or contact me below!"
- ],
autoStart: true,
loop: true,
delay: 50,
deleteSpeed: 25,
cursor: ''
}}
+ onInit={(typewriter) => {
+ typewriter.typeString("Hello, I'm
Timothy Pidashev")
+ .callFunction(() => {
+ console.log('Change the background element to a portrait of my face');
+ })
+ .pauseFor(2500)
+ .deleteAll()
+ .callFunction(() => {
+ console.log('Wipe the background element');
+ })
+ .start()
+
+ typewriter.typeString("I'm a 19 year old
on an epic journey to
become a software engineer!")
+ .pauseFor(2500)
+ .deleteAll()
+ .start()
+
+ typewriter.typeString("I enjoy:
writing code
hiking and camping
driving cars
and much more!")
+ .pauseFor(2500)
+ .deleteAll()
+ .start()
+
+ typewriter.typeString("Fun facts about me:
I keep a journal
I love rust lang!
I use a corebooted thinkpad")
+ .pauseFor(2500)
+ .deleteAll()
+ .start()
+
+ typewriter.typeString("Wait your still here?")
+ .pauseFor(2500)
+ .deleteAll()
+ .start()
+
+ typewriter.typeString("Check out my blog and shop
for many goodies!
or contact me below!")
+ .pauseFor(2500)
+ .deleteAll()
+ .start()
+ }}
/>