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 (
<>
{t('classificationHeader')}
{t('introParagraph1')}
{t('introLabel')}
{t('familyFirstText')}
{t('activeLifestyleText')}
{t('simpleThingsText')}
{t('techPurposeText')}
{t('contentSubtitle')}
{t('focusBeingDadText')}
{t('focusStayingActiveText')}
{t('focusTechnologyText')}
{t('focusLifeBalanceText')}
{t('techStackSubtitle')}
{t('techStackDevelopmentText')}
{t('techStackInfrastructureText')}
{t('techStackDesignText')}
{t('techStackSelfHostingText')}
You can reach me at{' '} email@example.com {' '} or find me on social media.
*/} {/*RESPONSE TIME: < 24H // STATUS: MONITORED
*/}