personal-site/app/about/(components)/Hero.tsx

39 lines
1.9 KiB
TypeScript
Raw Normal View History

2023-07-19 14:49:15 +00:00
"use client";
import React from "react";
2023-07-19 15:00:48 +00:00
// import TextShuffler from "../../../components/actions/TextShuffler";
2023-07-19 14:49:15 +00:00
import { appear, genericScroll } from "../../(utils)/animate";
export default function Hero() {
React.useEffect(genericScroll, []);
React.useEffect(appear, []);
return (
<div className="-mt-10 appear">
<div
className="flex flex-col items-start gap-0 max-w-6xl w-full relative generic-scroll"
// id="hero-text-section"
>
<span className="text-primary-light text-lg">
2023-07-19 15:00:48 +00:00
About Me
{/* <TextShuffler textInput="About Me" /> */}
2023-07-19 14:49:15 +00:00
</span>
<h1
className="text-5xl leading-snug"
id="hero-text"
>
2023-07-20 02:34:06 +00:00
Ben of All Trades, Master of All
2023-07-19 15:00:48 +00:00
{/* <TextShuffler textInput="Ben of All Trade, Master of All" /> */}
2023-07-19 14:49:15 +00:00
</h1>
<span className="hero-sub-text">
2023-07-19 15:00:48 +00:00
Quick learner, adaptable, problem solver, curious. I strive to know the system, rather than the status quo. My credo is: no problem too great, no knowledge too vast, no logic too complex. I thrive in difficult situations and complex hurdles: problem solving is now second nature to me: if you can think it, it can be done.
{/* <TextShuffler
2023-07-19 14:49:15 +00:00
textInput="Quick learner, adaptable, problem solver, curious. I strive to know the system, rather than the status quo. My credo is: no problem too great, no knowledge too vast, no logic too complex. I thrive in difficult situations and complex hurdles: problem solving is now second nature to me: if you can think it, it can be done."
delay={1000}
2023-07-19 15:00:48 +00:00
/> */}
2023-07-19 14:49:15 +00:00
</span>
</div>
</div>
);
}