ieeeucsd-org/src/components/join/OH.astro
2025-01-07 09:52:34 -08:00

13 lines
No EOL
408 B
Text

---
const {title, subtitle, image} = Astro.props;
---
<div data-inview class="flex flex-col items-center w-[40vw] my-[10%] in-view:animate-fade-down">
<p class="text-ieee-yellow text-[1.2vw]">
{subtitle}
</p>
<p class="text-white text-[2.5vw] my-[2%]">
{title}
</p>
<img src={image} alt="Office hours" class="object-cover aspect-[620/408] w-[90%] rounded-[2vw]" />
</div>