2025-07-17 09:17:10 -07:00
|
|
|
function About() {
|
|
|
|
|
|
|
|
|
|
return (
|
|
|
|
|
<div className="about page-outer">
|
|
|
|
|
<div>
|
2025-08-20 10:06:23 -07:00
|
|
|
<h2 className="text-xl text-[var(--color-secondaryTextDark)]">This app uses the following components:</h2>
|
|
|
|
|
<h2 className="mt-4 font-bold text-xl text-[var(--color-secondaryTextDark)]">Frontend:</h2>
|
2025-08-06 18:23:36 +00:00
|
|
|
<ul><li>React</li><li>TypeScript</li></ul>
|
2025-08-20 10:06:23 -07:00
|
|
|
<h2 className="mt-4 font-bold text-xl text-[var(--color-secondaryTextDark)]">Backend:</h2>
|
|
|
|
|
<ul><li>Node.js & Express</li><li>PostgreSQL</li><li>Prisma</li></ul>
|
|
|
|
|
<h2 className="mt-4 font-bold text-xl text-[var(--color-secondaryTextDark)]">Containerization:</h2>
|
2025-07-29 09:34:33 -07:00
|
|
|
<ul><li>Docker</li></ul>
|
2025-08-20 10:06:23 -07:00
|
|
|
<h2 className="mt-4 font-bold text-xl text-[var(--color-secondaryTextDark)]">Styling/UI:</h2>
|
2025-07-29 09:34:33 -07:00
|
|
|
<ul><li>Tailwind CSS</li></ul>
|
2025-08-20 10:06:23 -07:00
|
|
|
<p className="mt-4 text-[var(--color-secondaryTextDark)]">More about me <a className="text-[var(--color-textLink)]" target="_blank" href="https://fredzernia.com">here</a> |
|
|
|
|
|
Code for this app <a className="text-[var(--color-textLink)]" target="_blank" href="https://forgejo.fredzernia.com/fred/recipe_app">here</a></p>
|
2025-07-17 09:17:10 -07:00
|
|
|
</div>
|
2025-07-29 09:34:33 -07:00
|
|
|
</div >
|
2025-07-17 09:17:10 -07:00
|
|
|
)
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export default About
|