import { siteConfig } from '@/site.config'; import { ExternalLinkIcon } from 'lucide-react'; import Link from 'next/link'; const AboutPage = async () => { return (

Dev Blog

About

Hi, I'm{' '} {siteConfig.author.name} .

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 — ideas, experiments, and lessons from real projects. Hope we can learn and grow together.

Find me on GitHub Twitter
); }; export default AboutPage;