mirror of
https://github.com/gpxstudio/gpx.studio.git
synced 2026-06-09 17:00:25 +00:00
14 lines
520 B
Svelte
14 lines
520 B
Svelte
<script lang="ts">
|
|
import topoMap from '$lib/assets/img/home/topo.png?enhanced';
|
|
import waymarkedMap from '$lib/assets/img/home/waymarked.png?enhanced';
|
|
</script>
|
|
|
|
<div class="relative h-80 aspect-square rounded-2xl shadow-xl overflow-clip">
|
|
<enhanced:img src={topoMap} alt="Topo map screenshot." class="absolute" />
|
|
<enhanced:img
|
|
src={waymarkedMap}
|
|
alt="Waymarked Trails map screenshot."
|
|
class="absolute opacity-0 hover:opacity-100 transition-opacity duration-200"
|
|
/>
|
|
</div>
|