feat: introduce new components for improved structure and functionality
This commit is contained in:
parent
2e511b5e00
commit
c5e26d83c1
10 changed files with 101 additions and 62 deletions
9
src/components/EmptyState.astro
Normal file
9
src/components/EmptyState.astro
Normal file
|
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
interface Props {
|
||||
message: string;
|
||||
}
|
||||
|
||||
const { message } = Astro.props;
|
||||
---
|
||||
|
||||
<p class="text-lg text-zinc-400">{message}</p>
|
||||
Loading…
Add table
Add a link
Reference in a new issue