ieeeucsd-org/src/components/qp/Carousel.astro
2025-01-06 18:35:27 -08:00

20 lines
554 B
Text

---
import Subtitle from "../core/Subtitle.astro";
import { Image } from "astro:assets";
import qp from "../../images/qp.png";
---
<div class="flex flex-col items-center pb-[5%]">
<Subtitle title="We Are Excited To See You Here!" />
<p class="w-1/3 text-center text-[1.2vw] pb-[5%]">
Lorem ipsum is placeholder text commonly used in the graphic, print, and
publishing industries f
</p>
<Image
src={qp}
alt="board group photos"
class="w-1/2 rounded-[2vw] object-cover aspect-[2/1]"
/>
</div>