--- import FadeIn from "../ui/FadeIn.astro"; import { FaCamera, FaPhotoVideo } from "react-icons/fa"; import { MdPhotoCamera, MdCameraAlt } from "react-icons/md"; const cameras = [ { name: "Nikon D7200", icon: MdCameraAlt, description: "Dad's camera that got me hooked on photography" }, { name: "Nikon D3300", icon: MdCameraAlt, description: "My first personal camera where it all began" }, { name: "Sony A7 III", icon: MdPhotoCamera, description: "Current setup that's taken my shots to the next level" }, ]; const genres = [ { name: "Portrait", icon: FaCamera, description: "Love capturing people's authentic expressions" }, { name: "Street", icon: FaCamera, description: "Finding beauty in everyday urban moments" }, { name: "Studio", icon: FaPhotoVideo, description: "Creating controlled lighting magic" }, { name: "Landscape", icon: FaPhotoVideo, description: "Chasing perfect light in nature" }, ]; ---

Hobby

When I'm not coding, you'll find me with a camera in hand, hunting for that perfect shot that tells a story without words.

It all started with borrowing my dad's Nikon D7200 – I was instantly hooked. Eventually got my own Nikon D3300 to learn the basics. These days, I'm having a blast with my Sony A7 III, experimenting with different styles and techniques across various photography genres.

Camera Evolution

    { cameras.map((camera) => (
  • {camera.name}

    {camera.description}

  • )) }

Favorite Genres

    { genres.map((genre) => (
  • {genre.name}

    {genre.description}

  • )) }