Files
hideyoshi-blog/src/app/(pages)/about/page.tsx

39 lines
1.4 KiB
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
const AboutPage = async () => {
return (
<div className='max-w-3xl mx-auto px-4 py-10'>
<p className='mb-4'>Hi, Im Vitor Hideyoshi.</p>
<p className='mb-4'>
Im a software developer and Ive always enjoyed programming.
Over the years, Ive worked on all kinds of projects, from
infrastructure tools and data modeling systems to computational
physics simulations and agent-based AI tools.
</p>
<p className='mb-4'>
For me, programming is more than work. Its something I like to
explore, improve, and keep experimenting with.
</p>
<p className='mb-4'>
Im 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.
</p>
<p className='mb-4'>
This blog is where I share what I learn along the way, including
ideas, experiments, and lessons from real projects.
</p>
<p>
Feel free to explore my posts and check out my work on GitHub.
<br />
Hope we can learn and grow together.
</p>
</div>
);
};
export default AboutPage;