Skip to content

Commit

Permalink
refactor:
Browse files Browse the repository at this point in the history
- every link should open a new page
- minor stuff around (email, links redirects, classes)
  • Loading branch information
ilcors-dev committed Sep 28, 2023
1 parent dcb1628 commit 2dd641d
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 10 deletions.
5 changes: 2 additions & 3 deletions src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import { Icon } from "astro-icon";
class="col-span-2 mt-2 flex flex-col items-center justify-center sm:col-span-2 md:mt-0 2xl:col-span-1"
>
<p class="font-bold 2xl:mt-[36px]">Contattaci!</p>
<a href="mailto:[email protected]">[email protected]</a>
<a href="mailto:[email protected]" target="_blank">[email protected]</a>
</div>

<!-- <div
Expand All @@ -36,8 +36,7 @@ import { Icon } from "astro-icon";
<div
class="col-span-2 mt-2 flex flex-col items-center justify-center sm:col-span-2 md:mt-0 2xl:col-span-1"
>
<a href="https://soluter.it" class="font-bold 2xl:mt-[36px]">SOLUTER.IT</a
>
<a href="/" class="font-bold 2xl:mt-[36px]">SOLUTER.IT</a>
<p class="text-sm">sviluppato con amore da</p>
</div>

Expand Down
2 changes: 1 addition & 1 deletion src/components/HoverableDropdown.astro
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const props = Astro.props;
{
props.links.map((link) => (
<a
class="valsabike-orange-underline rounded-md px-3 py-2 hover:bg-gray-100"
class="rounded-md px-3 py-2 hover:bg-gray-100"
href={link.href}
>
{link.label}
Expand Down
3 changes: 2 additions & 1 deletion src/components/sections/FaqSection.astro
Original file line number Diff line number Diff line change
Expand Up @@ -47,8 +47,9 @@ const { id, containerClasses } = Astro.props;
<span class="text-center">E il primo passo è parlarne insieme.</span>
</h3>
<a
href="mailto:[email protected]"
href="mailto:[email protected]"
class="btn mt-12 bg-soluter-purple-500 px-6 py-1 text-center text-white hover:bg-soluter-purple-500/90"
target="_blank"
>
Contattaci
</a>
Expand Down
4 changes: 2 additions & 2 deletions src/components/sections/MarketSection.astro
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,9 @@ const { containerClasses, id } = Astro.props;
</h4>
</div>
<a
href="mailto:[email protected]"
href="mailto:[email protected]"
class="btn mt-12 bg-soluter-purple-500 px-8 py-1 text-white hover:bg-soluter-purple-500/90"
>Contattaci</a
target="_blank">Contattaci</a
>
</div>
</section>
1 change: 1 addition & 0 deletions src/components/sections/PlanSection.astro
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,7 @@ const { id, containerClasses } = Astro.props;
</div>
<a
href="https://calendly.com/astranoto/30min"
target="_blank"
class="btn mt-12 bg-soluter-blue-500 px-8 py-1 text-white hover:bg-soluter-blue-500/90"
>Prenota una call!</a
>
Expand Down
4 changes: 2 additions & 2 deletions src/components/sections/TestimonialSection.astro
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ const { id, containerClasses } = Astro.props;
</h3>
</div>
<a
href="mailto:[email protected]"
href="mailto:[email protected]"
class="btn mt-12 bg-soluter-green-500 px-6 py-1 text-white hover:bg-soluter-green-500/90"
>Scrivici per <br /> parlarne!</a
target="_blank">Scrivici per <br /> parlarne!</a
>
</section>
1 change: 1 addition & 0 deletions src/components/sections/WhatWeOfferSection.astro
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ const { id, containerClasses } = Astro.props;
</div>
<a
href="https://calendly.com/astranoto/30min"
target="_blank"
class="btn mt-12 bg-soluter-blue-500 px-8 py-1 text-white hover:bg-soluter-blue-500/90"
>Prenota una call!</a
>
Expand Down
2 changes: 1 addition & 1 deletion src/resources/faq.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@
}
],
"paragraphs": [
"Puoi contattarci qui: <a href=\"mailto:[email protected]\">[email protected]</a>. Saremo lieti di discutere delle tue esigenze, valutare la fattibilità del progetto e fornirti un preventivo personalizzato per l'implementazione delle nuove funzionalità nel tuo gestionale. Non esitare a chiederci un preventivo: è gratis! ;)"
"Puoi contattarci qui: <a href=\"mailto:[email protected]\">[email protected]</a>. Saremo lieti di discutere delle tue esigenze, valutare la fattibilità del progetto e fornirti un preventivo personalizzato per l'implementazione delle nuove funzionalità nel tuo gestionale. Non esitare a chiederci un preventivo: è gratis! ;)"
]
},
{
Expand Down

0 comments on commit 2dd641d

Please sign in to comment.