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

24 lines
1003 B
TypeScript
Raw Normal View History

2023-07-19 14:49:15 +00:00
"use client";
import React from "react";
export default function Hero() {
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"
>
2023-07-20 20:21:46 +00:00
<span className="text-primary-light text-lg">About Me</span>
2023-07-19 14:49:15 +00:00
<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 14:49:15 +00:00
</h1>
2023-07-20 20:21:46 +00:00
<span className="hero-sub-text">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.</span>
2023-07-19 14:49:15 +00:00
</div>
</div>
);
}