ERWAN.TECH

Hello World: My First Blog Post

Welcome to my blog! Here's why I decided to start writing about code, AI, and building products.

story

Why I started a blog

I've been building things for a while now — SaaS apps, side projects, experiments with AI. But I rarely took the time to write about what I learned along the way.

This blog is my attempt to change that. I want to share:

  • Technical deep dives into the tools I use daily
  • Lessons learned from building products solo
  • Thoughts on AI and how it's changing the way we build software

What to expect

I'll be writing about things like:

  1. Building fullstack apps with Next.js and TypeScript
  2. Working with AI APIs and agent frameworks
  3. The journey of shipping products as a solo developer

A quick code example

Here's a simple React component, just to make sure code blocks render nicely:

export function HelloWorld({ name }: { name: string }) {
  return (
    <div className="flex items-center gap-2">
      <span>Hello, {name}!</span>
    </div>
  );
}

What's next

Stay tuned for more posts. If you want to chat, feel free to reach out on X or GitHub.