feat: introduce new components for improved structure and functionality

This commit is contained in:
fiatcode 2026-01-22 17:48:29 +07:00
parent 2e511b5e00
commit c5e26d83c1
10 changed files with 101 additions and 62 deletions

View file

@ -0,0 +1,9 @@
---
interface Props {
message: string;
}
const { message } = Astro.props;
---
<p class="text-lg text-zinc-400">{message}</p>