initial commit
This commit is contained in:
commit
c70fc72952
143 changed files with 13594 additions and 0 deletions
7
src/components/blocks/Hero.astro
Normal file
7
src/components/blocks/Hero.astro
Normal file
|
@ -0,0 +1,7 @@
|
|||
---
|
||||
const { image, alt } = Astro.props;
|
||||
---
|
||||
|
||||
<div class="hero">
|
||||
<img src={image} alt={alt} />
|
||||
</div>
|
Reference in a new issue