ieeeucsd-org/src/pages/find.astro
2025-01-27 10:40:17 -08:00

31 lines
890 B
Text

---
import Layout from "../layouts/Layout.astro";
import Social from "../components/core/Social.astro";
import Findus from "../components/join/Findus.astro";
import FindTitle from "../components/find/FindTitle.astro";
import { Image } from "astro:assets";
import event from "../images/event.webp";
import contactbroder from "../images/contactbroder.webp";
---
<Layout>
<Image
src={contactbroder}
alt="JOIN US"
class="absolute left-[1vw] md:w-[4vw] w-[5vw] md:top-[60vh] top-[70vw] -z-10"
/>
<Image
src={contactbroder}
alt="JOIN US"
class="absolute right-[1vw] md:w-[4vw] w-[5vw] md:top-[60vh] top-[70vw] -z-10"
/>
<FindTitle />
<div class="w-full flex justify-center">
<div class="skeleton w-3/4 rounded-full">
<Image src={event} alt="board group photos" class="w-full rounded-full" />
</div>
</div>
<Findus />
<Social />
</Layout>