aggiunto mappa
This commit is contained in:
parent
b62661003c
commit
d716da1b69
|
|
@ -113,14 +113,13 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<q-card flat class="map-card">
|
<q-card flat class="map-card">
|
||||||
<div class="map-placeholder">
|
<iframe
|
||||||
<q-icon name="place" size="44px" color="primary" />
|
class="map-frame"
|
||||||
<div class="map-title">403, Port Washington Road, Canada</div>
|
:src="mapEmbedUrl"
|
||||||
<div class="map-text">
|
title="Clinic location map"
|
||||||
Interactive map placeholder ready to be replaced with your real embed
|
loading="lazy"
|
||||||
or location component.
|
referrerpolicy="no-referrer-when-downgrade"
|
||||||
</div>
|
/>
|
||||||
</div>
|
|
||||||
</q-card>
|
</q-card>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
@ -158,6 +157,9 @@ const socialLinks = [
|
||||||
{ icon: instagramIconUrl, label: 'Instagram' },
|
{ icon: instagramIconUrl, label: 'Instagram' },
|
||||||
{ icon: whatsappIconUrl, label: 'WhatsApp' },
|
{ icon: whatsappIconUrl, label: 'WhatsApp' },
|
||||||
];
|
];
|
||||||
|
|
||||||
|
const mapEmbedUrl =
|
||||||
|
'https://maps.google.com/maps?q=403%20Port%20Washington%20Road%2C%20Canada&z=14&output=embed';
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<style lang="sass" scoped>
|
<style lang="sass" scoped>
|
||||||
|
|
@ -289,23 +291,17 @@ const socialLinks = [
|
||||||
overflow: hidden
|
overflow: hidden
|
||||||
padding: 18px
|
padding: 18px
|
||||||
|
|
||||||
.map-placeholder
|
.map-frame
|
||||||
display: grid
|
display: block
|
||||||
place-items: center
|
width: 100%
|
||||||
min-height: 380px
|
height: 550px
|
||||||
padding: 32px
|
border: 0
|
||||||
border-radius: 24px
|
border-radius: 24px
|
||||||
background: linear-gradient(135deg, rgba(223, 247, 238, 0.92) 0%, rgba(219, 234, 254, 0.92) 100%)
|
filter: grayscale(1)
|
||||||
text-align: center
|
transition: filter 0.2s ease
|
||||||
|
|
||||||
.map-title
|
.map-frame:hover
|
||||||
margin-top: 14px
|
filter: grayscale(0)
|
||||||
font-size: 1.3rem
|
|
||||||
font-weight: 800
|
|
||||||
|
|
||||||
.map-text
|
|
||||||
max-width: 540px
|
|
||||||
margin-top: 10px
|
|
||||||
|
|
||||||
@media (max-width: 1023px)
|
@media (max-width: 1023px)
|
||||||
.contact-layout
|
.contact-layout
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue