From 164745c6c08517a4b4b9e5089b76c64f04df70f8 Mon Sep 17 00:00:00 2001 From: Vitor Hideyoshi Date: Wed, 1 Apr 2026 01:05:28 -0300 Subject: [PATCH] feat: adds about page content --- src/app/(pages)/about/page.tsx | 40 ++++++++++++++++++++++++++++------ 1 file changed, 33 insertions(+), 7 deletions(-) diff --git a/src/app/(pages)/about/page.tsx b/src/app/(pages)/about/page.tsx index 6a16fe3..d1bbe73 100644 --- a/src/app/(pages)/about/page.tsx +++ b/src/app/(pages)/about/page.tsx @@ -1,12 +1,38 @@ -import { siteConfig } from '@/site.config'; - -const Home = async () => { +const AboutPage = async () => { return ( -
-

About

-

Welcome {siteConfig.name}!

+
+

Hi, I’m Vitor Hideyoshi.

+ +

+ I’m a software developer and I’ve always enjoyed programming. + Over the years, I’ve worked on all kinds of projects, from + infrastructure tools and data modeling systems to computational + physics simulations and agent-based AI tools. +

+ +

+ For me, programming is more than work. It’s something I like to + explore, improve, and keep experimenting with. +

+ +

+ I’m especially drawn to building things that are simple, + practical, and useful. I care about continuous improvement, both + in the systems I build and in the way I approach problems. +

+ +

+ This blog is where I share what I learn along the way, including + ideas, experiments, and lessons from real projects. +

+ +

+ Feel free to explore my posts and check out my work on GitHub. +
+ Hope we can learn and grow together. +

); }; -export default Home; +export default AboutPage;