personal-site/app/(components)/AboutSection.tsx

55 lines
2.6 KiB
TypeScript
Raw Normal View History

2023-07-19 14:49:15 +00:00
"use client";
import React from "react";
export default function AboutSection() {
return (
<div
2023-07-20 20:21:46 +00:00
className="max-w-6xl w-full flex flex-col items-center pb-40 generic-scroll page-section"
id="about-section"
2023-07-19 14:49:15 +00:00
>
<div className="h-44"></div>
<div className="flex flex-col xl:flex-row w-full gap-8">
2023-07-20 20:21:46 +00:00
<div className="w-full xl:w-[40%]"></div>
2023-07-19 14:49:15 +00:00
2023-07-20 20:21:46 +00:00
<div className="w-full xl:w-[60%] px-4 md:px-6 py-2">
<section className="flex flex-col items-start gap-4">
<h2 className="mb-0">About Me</h2>
<span className="text-[24px]">Quick learner, adaptable, problem solver, curious. I strive to know the system, rather than the status quo. I thrive in difficult situations and complex hurdles: problem solving is now second nature to me.</span>
<hr className="w-full my-8" />
<h3 className="m-0">_ Code Ben</h3>
<span className="text-[24px]">In the last two years I've developed from a complete designer to pro software engineer. After countless days of writing code, debugging, testing, building projects, server administration, deployment, CI/CD, etc, I've developed the most vital skill of all: adaptability. The ability to asimilate new knowledge at record pace: the tech industry moves really fast: you either keepup, or fall behind.</span>
<hr className="w-full my-8" />
<h3 className="m-0">Graphic Design</h3>
<span className="text-[24px]">
After spending about 5 years in the design industry, I've picked up a few vital concepts about UI/UX design. My design path still sips into my developer life: and I must say, it's the perfect harmony of modern tech. Some of my designs can be found on my{" "}
<a
href="https://99designs.com/profiles/tben"
target="_blank"
2023-07-19 14:49:15 +00:00
>
2023-07-20 20:21:46 +00:00
99designs
</a>{" "}
profile.
2023-07-19 14:49:15 +00:00
</span>
2023-07-20 20:21:46 +00:00
<hr className="w-full my-8" />
2023-07-19 14:49:15 +00:00
<a
href="/about"
2023-07-20 20:21:46 +00:00
className="button outlined"
2023-07-19 14:49:15 +00:00
>
Learn More About Me
</a>
</section>
</div>
</div>
</div>
);
}