Skip to content

Commit a82d259

Browse files
Update src/app/(open-house)/open-house/page.tsx
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 2313a1d commit a82d259

File tree

1 file changed

+8
-10
lines changed

1 file changed

+8
-10
lines changed

src/app/(open-house)/open-house/page.tsx

Lines changed: 8 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -410,16 +410,14 @@ export default function VenuePage() {
410410
display: 'block',
411411
}}
412412
>
413-
<img
414-
src="/oh_map.svg"
415-
className={styles.horizontalMap}
416-
alt="Map of event venue showing booth locations"
417-
/>
418-
<img
419-
src="/oh_map_vertical.svg"
420-
className={styles.verticalMap}
421-
alt="Map of event venue showing booth locations"
422-
/>
413+
<picture>
414+
<source srcSet="/oh_map_vertical.svg" media="(orientation: portrait)" />
415+
<img
416+
src="/oh_map.svg"
417+
className={styles.mapImage}
418+
alt="Map of event venue showing booth locations"
419+
/>
420+
</picture>
423421
</button>
424422
</div>
425423

0 commit comments

Comments
 (0)