Skip to content

Commit 969464c

Browse files
committed
Add icons to accommodation section headers
- Add visual icons to Camping, Community, and Assistance section headers - Update icon for the community matrix room link - Align icons with text in headers
1 parent 3275698 commit 969464c

File tree

1 file changed

+15
-4
lines changed

1 file changed

+15
-4
lines changed

src/routes/hotels.jsx

Lines changed: 15 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@ import { FaSolidComments } from '@aminya/solid-icons/fa/FaSolidComments';
22
import { FaSolidHotel } from '@aminya/solid-icons/fa/FaSolidHotel';
33
import { FaSolidLink } from '@aminya/solid-icons/fa/FaSolidLink';
44
import { FaSolidMapLocationDot } from '@aminya/solid-icons/fa/FaSolidMapLocationDot';
5+
import { FaSolidCampground } from '@aminya/solid-icons/fa/FaSolidCampground';
6+
import { FaSolidCircleQuestion } from '@aminya/solid-icons/fa/FaSolidCircleQuestion';
57
import { For } from 'solid-js';
68
import PageLayout from '~/components/PageLayout';
79

@@ -141,7 +143,10 @@ export default function Hotels() {
141143
<div class="w-full space-y-8 mt-12">
142144
{/* Camping Section */}
143145
<div class="p-6 bg-white/10 backdrop-blur-lg rounded-xl border border-white/20">
144-
<h3 class="text-xl font-bold mb-4 text-center">Camping</h3>
146+
<h3 class="text-xl font-bold mb-4 text-center flex items-center justify-center gap-2">
147+
<FaSolidCampground />
148+
Camping
149+
</h3>
145150
<div class="flex flex-col justify-center items-center gap-4">
146151
<p class="text-center max-w-2xl">
147152
There is a camping area in the town of Jona which is close to the conference venue.
@@ -159,7 +164,10 @@ export default function Hotels() {
159164

160165
{/* Community Section */}
161166
<div class="p-6 bg-white/10 backdrop-blur-lg rounded-xl border border-white/20">
162-
<h3 class="text-xl font-bold mb-4 text-center">Community</h3>
167+
<h3 class="text-xl font-bold mb-4 text-center flex items-center justify-center gap-2">
168+
<FaSolidComments />
169+
Community
170+
</h3>
163171
<div class="flex flex-col justify-center items-center gap-4">
164172
<p class="text-center max-w-2xl">
165173
Connect with other attendees to coordinate shared accommodation options.
@@ -170,15 +178,18 @@ export default function Hotels() {
170178
rel="noopener noreferrer"
171179
class="px-4 py-2 bg-white/20 hover:bg-white/30 transition-colors rounded-lg text-white font-medium flex items-center gap-2"
172180
>
173-
<FaSolidComments />
181+
<FaSolidLink />
174182
Join our Matrix room to coordinate accommodation
175183
</a>
176184
</div>
177185
</div>
178186

179187
{/* Assistance Section */}
180188
<div class="p-6 bg-white/10 backdrop-blur-lg rounded-xl border border-white/20">
181-
<h3 class="text-xl font-bold mb-4 text-center">Need Accommodation Assistance?</h3>
189+
<h3 class="text-xl font-bold mb-4 text-center flex items-center justify-center gap-2">
190+
<FaSolidCircleQuestion />
191+
Need Accommodation Assistance?
192+
</h3>
182193
<div class="flex flex-col justify-center items-center gap-4">
183194
<p class="text-center max-w-2xl">
184195
If you need help finding suitable accommodation or have any questions, please don't hesitate to contact us.

0 commit comments

Comments
 (0)