Skip to content

Commit 4839d30

Browse files
authored
Add address to website (#306)
1 parent 6eac07b commit 4839d30

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

src/components/Hero.astro

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import { Image } from 'astro:assets';
33
import { Icon } from 'astro-icon/components';
44
5-
import { mailingListSubscriptionUrl } from '../constants';
5+
import { acmRoomMapsLink, mailingListSubscriptionUrl } from '../constants';
66
import CalendarModal from './CalendarModal.tsx';
77
import UpcomingEvents from './UpcomingEvents.tsx';
88
import headerImage from '../images/header.jpg';
@@ -117,6 +117,15 @@ const { disableBounce } = Astro.props;
117117
>
118118
<Icon name="lucide:mail" size={24} />
119119
</a>
120+
<a
121+
href={acmRoomMapsLink}
122+
target="_blank"
123+
rel="noopener noreferrer"
124+
class="rounded-lg p-2 text-white/70 transition-colors hover:bg-white/10 hover:text-white"
125+
title="Navigate to ACM @ UIUC"
126+
>
127+
<Icon name="lucide:map-pin" size={24} />
128+
</a>
120129
</div>
121130
</div>
122131
</div>

src/constants.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
export const mailingListSubscriptionUrl =
22
'https://listmonk.acm.illinois.edu/subscription/form';
33

4+
export const acmRoomMapsLink = 'https://maps.app.goo.gl/nC9cJ1omGbGBtPH49';
5+
46
export const membershipBenefits = [
57
{
68
summary: '**Swipe access** to the ACM room',

src/pages/about.mdx

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,3 +58,13 @@ Email the leadership team at officers@acm.illinois.edu.
5858
General inquiries should be directed to officers@acm.illinois.edu.
5959

6060
Corporate and partnership inquiries should be directed to corporate@acm.illinois.edu and officers@acm.illinois.edu.
61+
62+
Please send all mail to:
63+
64+
```
65+
ACM @ UIUC
66+
201 N Goodwin Avenue
67+
Room 1104
68+
Urbana, IL 61801-2302
69+
United States of America
70+
```

0 commit comments

Comments
 (0)