Skip to content

Commit 86118c5

Browse files
Add partner conferences.
1 parent aacafef commit 86118c5

File tree

5 files changed

+47
-0
lines changed

5 files changed

+47
-0
lines changed

public/images/partners/arctic.avif

10.9 KB
Binary file not shown.
9.07 KB
Binary file not shown.

public/images/partners/ioskonf.png

238 KB
Loading

src/components/Partners.astro

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
2+
<section class="partners">
3+
<div>
4+
<h2>Partner Conferences</h2>
5+
</div>
6+
<div class="partners-content">
7+
<a href="https://iosconf.sg" target="_blank" rel="noopener noreferrer"><img src="/images/partners/iOSConfSG.avif" alt="iOS Conf SG" /></a>
8+
<a href="https://arctic.dev" target="_blank" rel="noopener noreferrer"><img src="/images/partners/arctic.avif" alt="ARCtic Conference" /></a>
9+
<a href="https://ioskonf.com" target="_blank" rel="noopener noreferrer"><img src="/images/partners/ioskonf.png" alt="iOS Konf" /></a>
10+
</div>
11+
12+
</section>
13+
14+
<style>
15+
section {
16+
margin-top: 2rem;
17+
margin-bottom: 4rem;
18+
padding-top: 2rem;
19+
border-top: 2px solid var(--border-color);
20+
display: flex;
21+
flex-direction: column;
22+
align-items: center;
23+
}
24+
25+
img {
26+
width: 30%;
27+
object-fit: contain;
28+
vertical-align: middle;
29+
margin: 20px auto;
30+
padding-inline: 30px;
31+
}
32+
.partners {
33+
background: linear-gradient(135deg, #0a2463, var(--my-blue));
34+
color: white;
35+
padding: 4rem 2rem;
36+
border-radius: 1rem;
37+
margin-bottom: 1rem;
38+
text-align: center;
39+
}
40+
41+
.partners-content {
42+
max-width: 600px;
43+
margin: 0 auto;
44+
}
45+
</style>

src/pages/index.astro

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ import Hosts from "../components/Hosts2025.astro";
99
import Support from "../components/Support2025.astro";
1010
import Location from "../components/Location.astro";
1111
import Tickets from "../components/Tickets.astro";
12+
import Partners from "../components/Partners.astro";
1213
import Footer from "../components/Footer.astro";
1314
---
1415

@@ -135,6 +136,7 @@ import Footer from "../components/Footer.astro";
135136
</section> -->
136137
</main>
137138
<footer>
139+
<Partners />
138140
<Footer />
139141
</footer>
140142
</Layout>

0 commit comments

Comments
 (0)