import { Metadata } from 'next' import { Navbar } from '@/components/blog/navbar' import {setRequestLocale} from 'next-intl/server' export const metadata: Metadata = { title: 'About', description: 'Learn more about me and this blog', } type Props = { params: Promise<{locale: string}> } export default async function AboutPage({params}: Props) { const {locale} = await params setRequestLocale(locale) return ( <>
{/* Classification Header */}

>> _DOC://PUBLIC_ACCESS

ABOUT ME_

{/* Main Content */}
{/* Introduction Section */}

Welcome to my corner of the internet! This is where I share my thoughts, opinions, and experiences - from tech adventures to life as a family man. Yes, I love technology, but there's so much more to life than just code and servers.

STATUS: ACTIVE // ROLE: DAD + DEV + LIFE ENTHUSIAST

{/* Life & Values Section */}

> LIFE & VALUES

[FAMILY FIRST]

Being a dad to an amazing toddler is my most important role. Family time is sacred - whether it's building block towers, exploring parks, or just enjoying the chaos of everyday life together. Tech can wait; these moments can't.

[ACTIVE LIFESTYLE]

I believe in keeping the body active. Whether it's hitting the gym, playing sports, or just staying on the move - physical activity keeps me sharp, balanced, and ready for whatever life throws my way.

[ENJOYING THE SIMPLE THINGS]

Life's too short not to enjoy it. A good drink, a relaxing evening after a long day, or just not doing anything a blowing some steam off.

[TECH WITH PURPOSE]

Yes, I love tech - self-hosting, privacy, tinkering with hardware. But it's a tool, not a lifestyle. Tech should serve life, not the other way around.

{/* Content Section */}

> WHAT YOU'LL FIND HERE

CONTENT SCOPE // EVERYTHING FROM TECH TO LIFE

  • > Thoughts & Opinions - My take on life, work, and everything in between
  • > Life & Family - Adventures in parenting, sports, and enjoying the simple things
  • > Tech Research - When I dive into interesting technologies and experiments
  • > System Administration - Self-hosting, infrastructure, and DevOps adventures
  • > Development Insights - Lessons learned from building software
  • > Random Stuff - Because life doesn't fit into neat categories!
{/* Areas of Focus Section */}

> AREAS OF FOCUS

[BEING A DAD]

Playing with my boy, teaching moments, watching him grow, building memories together

[STAYING ACTIVE]

Gym sessions, sports, keeping fit, maintaining energy for life's demands

[TECHNOLOGY & SYSTEMS]

Software development, infrastructure, DevOps, self-hosting adventures

[LIFE BALANCE]

Relaxing with good company, enjoying downtime, appreciating the simple moments

{/* Tech Stack Section */}

> TECH STACK

TOOLS I USE // WHEN NEEDED

[DEVELOPMENT]

.NET, Golang, TypeScript, Next.js, React

[INFRASTRUCTURE]

Windows Server, Linux, Docker, Hyper-V

[DESIGN]

Tailwind CSS, Markdown, Terminal aesthetics

[SELF-HOSTING]

Home lab, privacy-focused services, full control, Git server

{/* Contact Section */}

> CONTACT

{/*

You can reach me at{' '} email@example.com {' '} or find me on social media.

*/} {/*

RESPONSE TIME: < 24H // STATUS: MONITORED

*/}
) }