added seconds alive to about page

This commit is contained in:
Oliver Bryan
2025-09-08 19:23:38 +01:00
parent 730cef4c86
commit 04d6e0349f
2 changed files with 42 additions and 2 deletions

View File

@@ -1,7 +1,9 @@
---
import Layout from "../layouts/Layout.astro";
import SecondsAlive from "../components/SecondsAlive.astro";
---
<Layout currentPage="about">
<h1 class="text-md">about page</h1>
</Layout>
<h1 class="text-md">about page</h1>
<SecondsAlive client:react />
</Layout>