"use client"; import { useTranslations } from "next-intl"; /** * Section presenting personal background information, education, and key overview facts */ export default function About() { const tCommon = useTranslations("Common"); const tAbout = useTranslations("About"); return (
{/* Section Header */}

// 01. {tAbout("sectionSub")}

{tCommon("about")} .

{/* Personal Bio Paragraphs */}

{tAbout("bio1")}

{tAbout("bio2")}

{tAbout("bio3")}

{/* Quick Facts Card */}
{/* Card Header */}

//{" "} {tAbout("quickFactsTitle")}

{/* Key Highlights List */}
  • {tAbout("languagesLabel")}: {tAbout("languagesValue")}
  • {tAbout("stackLabel")}: Angular (TS), React (Next.js)
  • {tAbout("focusLabel")}: {tAbout("focusValue")}:
  • Status: {tAbout("statusValue")}
{/* Footer Tagline */}
`Keep it simple, keep it clean.`
); }