We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2313a1d commit a82d259Copy full SHA for a82d259
src/app/(open-house)/open-house/page.tsx
@@ -410,16 +410,14 @@ export default function VenuePage() {
410
display: 'block',
411
}}
412
>
413
- <img
414
- src="/oh_map.svg"
415
- className={styles.horizontalMap}
416
- alt="Map of event venue showing booth locations"
417
- />
418
419
- src="/oh_map_vertical.svg"
420
- className={styles.verticalMap}
421
422
+ <picture>
+ <source srcSet="/oh_map_vertical.svg" media="(orientation: portrait)" />
+ <img
+ src="/oh_map.svg"
+ className={styles.mapImage}
+ alt="Map of event venue showing booth locations"
+ />
+ </picture>
423
</button>
424
</div>
425
0 commit comments