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

75 lines
3.2 KiB
TypeScript
Raw Normal View History

2023-10-24 17:59:00 +00:00
/** # MODULE TRACE
======================================================================
* Detected 1 files that call this module. The files are listed below:
======================================================================
* `import` Statement Found in [HomepageComponent.tsx] => file:///d:\GitHub\personal_site\app\(components)\HomepageComponent.tsx
==== MODULE TRACE END ==== */
"use client";
import React from "react";
export default function AboutSection() {
return (
<div
className="max-w-6xl w-full flex flex-col items-center pb-40 generic-scroll page-section"
id="about-section"
>
<div className="h-44"></div>
<div className="flex flex-col xl:flex-row w-full gap-8">
<div className="w-full xl:w-[40%]"></div>
<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>
2024-01-08 18:03:07 +00:00
<span className="text-[24px]">
2024-01-09 11:49:14 +00:00
Software, tech, bleeding edge, cloud, solar energy,
are some of the things that I'm passionate about.
But my most important skill is my ability to learn
and adapt.
2024-01-08 18:03:07 +00:00
</span>
2023-10-24 17:59:00 +00:00
<hr className="w-full my-8" />
2024-01-08 18:03:07 +00:00
<h3 className="m-0">_Code Ben</h3>
<span className="text-[24px]">
Software engineering is natural to me as a trained
engineer. Web/server architecture and design is
where I really thrive. Using tried and trusted
technologies, while keeping a keen eye on stability
and performance, I'm able to create the perfect
balance between bleeding edge and stability.
</span>
2023-10-24 17:59:00 +00:00
<hr className="w-full my-8" />
<h3 className="m-0">Graphic Design</h3>
<span className="text-[24px]">
2024-01-08 18:03:07 +00:00
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 it boosts my overall expertise. Some of my
designs can be found on my{" "}
2023-10-24 17:59:00 +00:00
<a
href="https://99designs.com/profiles/tben"
target="_blank"
>
99designs
</a>{" "}
profile.
</span>
<hr className="w-full my-8" />
2024-01-08 18:03:07 +00:00
<a href="/about" className="button outlined">
2023-10-24 17:59:00 +00:00
Learn More About Me
</a>
</section>
</div>
</div>
</div>
);
}