feat(Style): add animations and effects to landing page

added:

- float like group
- button hover effect
- link hover glow effect
- component zoom effect
This commit is contained in:
Alexander Navarro 2024-03-14 17:22:03 -03:00
parent 9f15e40d6e
commit d7a9817514
5 changed files with 92 additions and 7 deletions

View file

@ -1,10 +1,13 @@
---
export interface Props {
title?: string;
className?: string;
}
const { className } = Astro.props;
---
<div class="card vstack">
<div class:list={['card', 'vstack', className]}>
<div class="title">
<slot name="title" />
</div>