--- import { getEmDashEntry } from "emdash"; import PortfolioBase from "../layouts/PortfolioBase.astro"; const { entry: page, cacheHint } = await getEmDashEntry("pages", "about"); Astro.cache.set(cacheHint); ---

About Us

{page?.data?.content ? (
{page.data.content.map((block: any) => { if (block._type === "block") { return

{block.children?.map((c: any) => c.text).join("")}

; } return null; })}
) : (

We are a creative studio focused on design and development.

Add your about page content in the admin panel.

Open Admin
)}