-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
29 lines (29 loc) · 1.13 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
title: Home
layout: default
---
<div class="container">
<div class="p-5 mb-4 bg-body-tertiary rounded-3">
<div class="container-fluid py-6">
<h2 class="display-5 fw-bold">Projects</h2>
<p class="col-md-8 fs-4">Visit our projects page to get updates on our latest works!</p>
<a href="/projects" class="btn btn-primary btn-lg">View All Projects</a>
</div>
</div>
<div class="row align-items-md-stretch d-flex">
<div class="col-md-6">
<div class="h-100 p-5 bg-body-tertiary rounded-3">
<h2>About Us</h2>
<p>Visit the About Us section to learn more about WL Hack Club and what we do.</p>
<a href="/about" class="btn btn-primary">About Us</a>
</div>
</div>
<div class="col-md-6">
<div class="h-100 p-5 bg-body-tertiary rounded-3">
<h2>Upcoming Events</h2>
<p>Checkout our semiannual Hackathon Event. Have a chance to compete against other students and win prizes. Free food and snacks will be provided. Visit the Hackathon site for more details.</p>
<a href="/hackathon" class="btn btn-primary">Hackathon</a>
</div>
</div>
</div>
</div>