feat: create FooterSection component with contact form and internationalization support
This commit is contained in:
parent
669eb84734
commit
4752f2d307
|
|
@ -31,12 +31,21 @@ const isHebrew = Astro.currentLocale === "he";
|
||||||
<p class="text-lg font-light mb-10" set:html={tl("footer.text")}></p>
|
<p class="text-lg font-light mb-10" set:html={tl("footer.text")}></p>
|
||||||
<p class="text-lg font-regular">
|
<p class="text-lg font-regular">
|
||||||
{tl("footer.email")}
|
{tl("footer.email")}
|
||||||
|
<!--email_off-->
|
||||||
<a
|
<a
|
||||||
class="font-light hover:text-[#D4C7A1] transition-all hover:underline hover:underline-offset-4"
|
class="font-light hover:text-[#D4C7A1] transition-all hover:underline hover:underline-offset-4 hidden lg:block"
|
||||||
href="mailto:developer@centrodelreinodepazyjusticia.com"
|
href="mailto:developer@centrodelreinodepazyjusticia.com"
|
||||||
>developer@centrodelreinodepazyjusticia.com</a
|
>developer@centrodelreinodepazyjusticia.com</a
|
||||||
>
|
>
|
||||||
|
<!--/email_off-->
|
||||||
</p>
|
</p>
|
||||||
|
<!--email_off-->
|
||||||
|
<a
|
||||||
|
class="font-light hover:text-[#D4C7A1] transition-all hover:underline hover:underline-offset-4 block lg:hidden overflow-hidden overflow-ellipsis"
|
||||||
|
href="mailto:developer@centrodelreinodepazyjusticia.com"
|
||||||
|
>developer@centrodelreinodepazyjusticia.com</a
|
||||||
|
>
|
||||||
|
<!--/email_off-->
|
||||||
<p
|
<p
|
||||||
class="text-lg font-light mb-10 break-words"
|
class="text-lg font-light mb-10 break-words"
|
||||||
set:html={tl("footer.text2")}
|
set:html={tl("footer.text2")}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue