come funziona update
This commit is contained in:
parent
2e316f274b
commit
d26acf9b60
3 changed files with 9 additions and 7 deletions
|
|
@ -19,11 +19,11 @@ export const ComeFunziona = () => {
|
|||
>
|
||||
<ExpandableScreenTrigger className="w-full">
|
||||
<Button
|
||||
className="w-full text-lg md:text-base lg:text-lg"
|
||||
className="w-full text-base sm:text-lg"
|
||||
data-umami-event="come_funziona_guida_open"
|
||||
size="xl"
|
||||
>
|
||||
<HelpCircle />
|
||||
<HelpCircle className="size-8" />
|
||||
<span>{t.come_funziona_guida.title}</span>
|
||||
</Button>
|
||||
</ExpandableScreenTrigger>
|
||||
|
|
@ -34,11 +34,13 @@ export const ComeFunziona = () => {
|
|||
// biome-ignore lint/suspicious/noArrayIndexKey: <ok>
|
||||
<div className="space-y-6" key={index}>
|
||||
<div className="space-y-2">
|
||||
<h2 className="font-semibold text-4xl">{text.title}</h2>
|
||||
<h2 className="font-semibold text-2xl sm:text-4xl">
|
||||
{text.title}
|
||||
</h2>
|
||||
{text.parts.map((p, i) => {
|
||||
return typeof p === "object" ? (
|
||||
<Link
|
||||
className="text-2xl underline after:content-['_↗'] hover:text-secondary"
|
||||
className="underline after:content-['_↗'] hover:text-secondary sm:text-2xl"
|
||||
href={p.href}
|
||||
// biome-ignore lint/suspicious/noArrayIndexKey: <ok>
|
||||
key={`${index}-link-${i}`}
|
||||
|
|
@ -47,7 +49,7 @@ export const ComeFunziona = () => {
|
|||
</Link>
|
||||
) : (
|
||||
<p
|
||||
className="text-2xl"
|
||||
className="sm:text-2xl"
|
||||
// biome-ignore lint/suspicious/noArrayIndexKey: <ok>
|
||||
key={`${index}-${i}`}
|
||||
>
|
||||
|
|
|
|||
|
|
@ -468,7 +468,7 @@ export const en: LangDict = {
|
|||
},
|
||||
contatti: "Contacts",
|
||||
come_funziona_guida: {
|
||||
title: "How does Infoalloggi work?",
|
||||
title: "How does Infoalloggi's service works?",
|
||||
features: [
|
||||
{
|
||||
title: "Service cost",
|
||||
|
|
|
|||
|
|
@ -473,7 +473,7 @@ export const it: LangDict = {
|
|||
},
|
||||
contatti: "Contatti",
|
||||
come_funziona_guida: {
|
||||
title: "Come funziona Infoalloggi?",
|
||||
title: "Come funziona il servizio Infoalloggi?",
|
||||
features: [
|
||||
{
|
||||
title: "Costo del servizio",
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue