add bannar

This commit is contained in:
Shing Hung 2025-01-05 16:44:09 -08:00
parent 5cd9c1415d
commit ede45ec137
2 changed files with 12 additions and 2 deletions

View file

@ -1,7 +1,15 @@
--- ---
import Subtitle from "../core/Subtitle.astro";
import { Image } from "astro:assets";
import qp from "../../../public/qp.png";
---
--- <div class="flex flex-col items-center pb-[5%]">
<Subtitle title="We Are Excited To See You Here!" />
<div> <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> </div>

View file

@ -9,6 +9,7 @@ import qp from "../../public/qp.png"
import Mentorship from "../components/qp/Mentorship.astro"; import Mentorship from "../components/qp/Mentorship.astro";
import qpborder from "../../public/qpborder.png"; import qpborder from "../../public/qpborder.png";
import Join from "../components/qp/Join.astro"; import Join from "../components/qp/Join.astro";
import Carousel from "../components/qp/Carousel.astro";
--- ---
<Layout> <Layout>
@ -23,4 +24,5 @@ import Join from "../components/qp/Join.astro";
<PastProjects /> <PastProjects />
<Mentorship /> <Mentorship />
<Join /> <Join />
<Carousel />
</Layout> </Layout>