mirror of
https://github.com/hex248/ob248.com.git
synced 2026-02-07 18:23:04 +00:00
16 lines
338 B
Plaintext
16 lines
338 B
Plaintext
---
|
|
import Layout from "../layouts/Layout.astro";
|
|
import TimeSince from "../components/TimeSince.astro";
|
|
---
|
|
|
|
<Layout currentPage="about">
|
|
<div class="text-md">
|
|
<p>
|
|
AGE: <TimeSince
|
|
date={new Date("11:47:00 2004-11-04")}
|
|
client:react
|
|
/>
|
|
</p>
|
|
</div>
|
|
</Layout>
|