infoalloggi-monorepo/apps/infoalloggi/src/pages/guida.tsx

112 lines
3.1 KiB
TypeScript
Raw Normal View History

2025-08-04 17:45:44 +02:00
import type { NextPage } from "next";
import Head from "next/head";
2025-08-28 18:27:07 +02:00
import { ComeFunziona } from "~/components/come_funziona";
2025-08-04 17:45:44 +02:00
import {
2025-08-28 18:27:07 +02:00
Accordion,
AccordionContent,
AccordionItem,
AccordionTrigger,
2025-08-04 17:45:44 +02:00
} from "~/components/ui/accordion";
import { Badge } from "~/components/ui/badge";
2025-08-28 18:27:07 +02:00
import { Button } from "~/components/ui/button";
import { useTranslation } from "~/providers/I18nProvider";
2025-08-04 17:45:44 +02:00
const Guida: NextPage = () => {
2025-08-28 18:27:07 +02:00
const { t } = useTranslation();
2025-08-04 17:45:44 +02:00
2025-08-28 18:27:07 +02:00
return (
<>
<Head>
<title>{t.heads.guida_titolo}</title>
2025-08-29 16:18:32 +02:00
<meta content={t.heads.main_description} name="description" />
2025-08-28 18:27:07 +02:00
</Head>
<main className="mx-auto w-full max-w-8xl px-2 py-5 md:px-8">
<Badge className="bg-muted py-1 text-foreground text-sm outline outline-muted-foreground">
2025-08-28 18:27:07 +02:00
{t.guida}
</Badge>
2025-08-04 17:45:44 +02:00
2025-08-28 18:27:07 +02:00
<ComeFunziona />
<FAQSection />
</main>
</>
);
2025-08-04 17:45:44 +02:00
};
export default Guida;
const FAQSection = () => {
2025-08-28 18:27:07 +02:00
const { t } = useTranslation();
2025-08-04 17:45:44 +02:00
2025-08-28 18:27:07 +02:00
const handleScroll = (id: string) => {
document.getElementById(id)?.scrollIntoView({
behavior: "smooth",
});
window.history.replaceState({}, "", `${window.location.pathname}#${id}`);
};
2025-08-04 17:45:44 +02:00
2025-08-28 18:27:07 +02:00
if (!t.faq?.domande) {
return null; // Ensure translations are loaded before rendering
}
2025-08-04 17:45:44 +02:00
2025-08-28 18:27:07 +02:00
return (
<section className="px-4 py-12 md:px-6" id="faq">
<div className="mx-auto grid max-w-5xl items-center gap-6 py-12">
<div className="flex flex-col justify-center space-y-4">
2025-08-28 18:27:07 +02:00
<div className="space-y-2">
2025-10-10 16:18:43 +02:00
<h2 className="font-bold text-3xl tracking-tighter md:text-4xl">
2025-08-28 18:27:07 +02:00
{t.faq.titolo}
</h2>
<p className="text-muted-foreground md:text-xl/relaxed lg:text-base/relaxed xl:text-xl/relaxed">
2025-08-28 18:27:07 +02:00
{t.faq.descrizione}
</p>
</div>
</div>
2025-08-04 17:45:44 +02:00
2025-08-28 18:27:07 +02:00
<div className="flex w-full max-w-6xl justify-between gap-5">
<div className="hidden flex-col gap-5 md:flex">
{t.faq.domande.map((item) => (
2025-08-28 18:27:07 +02:00
<Button
2025-10-10 16:18:43 +02:00
className="justify-start font-semibold text-lg"
key={item.id}
2025-08-28 18:27:07 +02:00
onClick={() => handleScroll(`faq-${item.id}`)}
2025-08-29 16:18:32 +02:00
variant="ghost"
2025-08-28 18:27:07 +02:00
>
{item.label}
</Button>
))}
</div>
<div className="flex w-full flex-col gap-5">
{t.faq.domande.map((item) => (
2025-08-28 18:27:07 +02:00
<Accordion
className="relative w-full rounded-lg bg-muted p-4"
2025-08-28 18:27:07 +02:00
collapsible
key={`accordion-${item.id}`}
2025-08-28 18:27:07 +02:00
//defaultValue="0"
2025-08-29 16:18:32 +02:00
type="single"
2025-08-28 18:27:07 +02:00
>
<div className="absolute -top-16" id={`faq-${item.id}`} />
2025-10-10 16:18:43 +02:00
<h3 className="font-semibold text-2xl">{item.label}</h3>
2025-08-28 18:27:07 +02:00
<div className="flex flex-col gap-1">
{item.qas.map((f, i) => (
<AccordionItem
className="border-b dark:border-muted-foreground/50"
key={`accordion-item-${item.id}-${i}`}
value={i.toString()}
>
<AccordionTrigger className="cursor-pointer text-left">
2025-08-28 18:27:07 +02:00
{f.title}
</AccordionTrigger>
<AccordionContent>
<p className="leading-relaxed">{f.description}</p>
</AccordionContent>
</AccordionItem>
))}
</div>
</Accordion>
))}
</div>
</div>
</div>
</section>
);
2025-08-04 17:45:44 +02:00
};