16 lines
287 B
Text
16 lines
287 B
Text
---
|
|
import Page from "~/layouts/Page.astro";
|
|
import Prose from "~/components/ui/Prose.astro";
|
|
import { Content } from "~/content/about.md";
|
|
---
|
|
|
|
<Page
|
|
title="About"
|
|
description="do you wanna know?"
|
|
icon="fa-solid fa-user"
|
|
date="2025-03-13"
|
|
>
|
|
<Prose>
|
|
<Content />
|
|
</Prose>
|
|
</Page>
|