diff --git a/src/components/Header.astro b/src/components/Header.astro index f59e6d0..8eaa7da 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -46,6 +46,17 @@ const currentPath = Astro.url?.pathname ?? "/"; projects + +
  • + + about + +
  • diff --git a/src/pages/about.astro b/src/pages/about.astro new file mode 100644 index 0000000..ea755c6 --- /dev/null +++ b/src/pages/about.astro @@ -0,0 +1,54 @@ +--- +import PageLayout from "@layouts/PageLayout.astro"; +import Container from "@components/Container.astro"; +import Link from "@components/Link.astro"; +import { SITE, SOCIALS } from "@consts"; +import { getHomeOGData } from "@lib/opengraph"; + +const ogData = getHomeOGData( + Astro.url.toString(), + Astro.site?.toString() || "" +); +--- + + + +
    +

    + About +

    + +
    +
    +

    About Dispatches

    +
    +

    + Dispatches is where I publish technical writing on topics of personal interest. + During this initial phase, much of the content will be "refurbished-and-expanded": older + personal notes or explanations, updated and expanded where necessary. +

    +

    + Expect a focus on Swift, lower-level iOS work, and—as of late—agentic coding assistants. +

    +
    +
    + +
    +

    Connect

    +
    +

    Feel free to reach out:

    +
      + {SOCIALS.map(SOCIAL => ( +
    • + + {SOCIAL.NAME} + +
    • + ))} +
    +
    +
    +
    +
    +
    +