ieeeucsd-org/src/pages/find.astro
2025-01-23 22:10:26 -08:00

32 lines
857 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] w-[4vw] top-[60vh]"
/>
<Image
src={contactbroder}
alt="JOIN US"
class="absolute right-[1vw] w-[4vw] top-[60vh]"
/>
<FindTitle />
<div class="w-full flex justify-center">
<Image
src={event}
alt="board group photos"
class="w-3/4 rounded-full"
/>
</div>
<Findus />
<Social />
</Layout>