Skip to content

Commit

Permalink
mc
Browse files Browse the repository at this point in the history
  • Loading branch information
motocarota committed Apr 13, 2024
1 parent cd448b4 commit a2d1cb8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/lib/Footer.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@
<div class="max-w-screen-lg py-10 mx-auto font-thin text-center">
<h1 class="mb-4">Delfino Bianco</h1>
<p class="mb-6 text-xl">Ristorante Bar Pizzeria</p>
<SocialLinks />

<p>via XX Settembre 12, 16039 Sestri Levante (Ge) ITALY</p>
<p>Tel. +39 0185450837 - 328 1467737</p>
<p>
<a href="mailto:[email protected]?subject=informazioni" target="_blank">[email protected]</a>
</p>
<p>www.ristorantedelfinobianco.it</p>
<SocialLinks />
</div>
</footer>
2 changes: 1 addition & 1 deletion src/lib/SocialLinks.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<div class="flex m-5 p-5 space-x-6 rtl:space-x-reverse sm:justify-center sm:mt-0">
{#each socials as s}
<FooterIcon href={s.url} target="_blank">
<img src={`img/${s.id}.svg`} alt={s.id} width={36} height={36} />
<img src={`img/${s.id}.svg`} alt={s.id} width={56} height={56} />
</FooterIcon>
{/each}
</div>

0 comments on commit a2d1cb8

Please sign in to comment.