-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtmpRemoved.html
More file actions
56 lines (55 loc) · 2.52 KB
/
tmpRemoved.html
File metadata and controls
56 lines (55 loc) · 2.52 KB
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
<!-- Events Grid -->
<section>
<h2 class="text-3xl">Upcoming Events</h2>
<div class="grid">
<!-- Event Card 1 -->
<div class="event-card">
<h3>Tech Talk: Future of AI</h3>
<div class="event-type">Public Event</div>
<div class="event-details">
<p><strong>Date:</strong> April 10, 2025</p>
<p><strong>Start:</strong> 3:00 PM</p>
<p><strong>End:</strong> 4:00 PM</p>
<p><strong>Location:</strong> Engineering Building Room 101</p>
</div>
<p>A discussion on the future implications of artificial intelligence in our daily lives.</p>
<div style="text-align: center; margin-top: 1rem;">
<button class="btn" onclick="rateEvent('Tech Talk')">Rate</button>
<button class="btn" onclick="commentEvent('Tech Talk')">Comment</button>
</div>
</div>
<!-- Event Card 2 -->
<div class="event-card">
<h3>Fundraiser: Charity Run</h3>
<div class="event-type">RSO Event</div>
<div class="event-details">
<p><strong>Date:</strong> April 15, 2025</p>
<p><strong>Start:</strong> 9:00 AM</p>
<p><strong>End:</strong> 10:00 AM</p>
<p><strong>Location:</strong> Campus Grounds</p>
</div>
<p>Join us for a charity run to support local nonprofits. Lace-up and make a difference!</p>
<div style="text-align: center; margin-top: 1rem;">
<button class="btn" onclick="rateEvent('Charity Run')">Rate</button>
<button class="btn" onclick="commentEvent('Charity Run')">Comment</button>
</div>
</div>
<!-- Event Card 3 -->
<div class="event-card">
<h3>Social Mixer</h3>
<div class="event-type">Private Event</div>
<div class="event-details">
<p><strong>Date:</strong> April 20, 2025</p>
<p><strong>Start:</strong> 6:00 PM</p>
<p><strong>End:</strong> 8:00 PM</p>
<p><strong>Location:</strong> Student Union Lounge</p>
</div>
<p>Come meet new people and network with your peers at our social mixer!</p>
<div style="text-align: center; margin-top: 1rem;">
<button class="btn" onclick="rateEvent('Social Mixer')">Rate</button>
<button class="btn" onclick="commentEvent('Social Mixer')">Comment</button>
</div>
</div>
<!-- Additional event cards can be added here -->
</div>
</section>