import { Metadata } from 'next' import { Navbar } from '@/components/blog/navbar' import { setRequestLocale, getTranslations } 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) const t = await getTranslations('About') return ( <>
{/* Classification Header */}

{t('classificationHeader')}

{t('mainTitle')}

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

{t('introParagraph1')}

{t('introLabel')}

{/* Life & Values Section */}

{t('lifeValuesTitle')}

{t('familyFirstTitle')}

{t('familyFirstText')}

{t('activeLifestyleTitle')}

{t('activeLifestyleText')}

{t('simpleThingsTitle')}

{t('simpleThingsText')}

{t('techPurposeTitle')}

{t('techPurposeText')}

{/* Content Section */}

{t('contentTitle')}

{t('contentSubtitle')}

  • > {t('contentThoughts')} - {t('contentThoughtsDesc')}
  • > {t('contentLifeFamily')} - {t('contentLifeFamilyDesc')}
  • > {t('contentTechResearch')} - {t('contentTechResearchDesc')}
  • > {t('contentSysAdmin')} - {t('contentSysAdminDesc')}
  • > {t('contentDevelopment')} - {t('contentDevelopmentDesc')}
  • > {t('contentRandom')} - {t('contentRandomDesc')}
{/* Areas of Focus Section */}

{t('focusTitle')}

{t('focusBeingDadTitle')}

{t('focusBeingDadText')}

{t('focusStayingActiveTitle')}

{t('focusStayingActiveText')}

{t('focusTechnologyTitle')}

{t('focusTechnologyText')}

{t('focusLifeBalanceTitle')}

{t('focusLifeBalanceText')}

{/* Tech Stack Section */}

{t('techStackTitle')}

{t('techStackSubtitle')}

{t('techStackDevelopmentTitle')}

{t('techStackDevelopmentText')}

{t('techStackInfrastructureTitle')}

{t('techStackInfrastructureText')}

{t('techStackDesignTitle')}

{t('techStackDesignText')}

{t('techStackSelfHostingTitle')}

{t('techStackSelfHostingText')}

{/* Contact Section */}

{t('contactTitle')}

{/*

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

*/} {/*

RESPONSE TIME: < 24H // STATUS: MONITORED

*/}
) }