);
}
/* ============================================================
Process timeline
============================================================ */
function Process({ t }) {
return (
{t.process.eyebrow}
{t.process.title}
{t.process.lead}
{t.process.steps.map((s) => (
— {s.num}
{s.title}
{s.desc}
{s.time}
))}
);
}
/* ============================================================
Materials
============================================================ */
function Materials({ t, lang }) {
return (
{t.materials.eyebrow}
{t.materials.title}
{t.materials.lead}
{t.materials.items.map((it) => (
{it.num}
{it.title}
{it.desc}
{it.icon}
))}
);
}
/* ============================================================
Testimonials
============================================================ */
function Testimonials({ t }) {
return (
{t.testimonials.eyebrow}
{t.testimonials.title}
{t.testimonials.items.map((it, i) => (
"
{it.quote}
{it.name}
{it.loc}
))}
);
}
/* ============================================================
FAQ
============================================================ */
function FAQ({ t }) {
const [open, setOpen] = useStateSC(0);
return (
{t.faq.eyebrow}
{t.faq.title}
{t.faq.items.map((it, i) => (
{it.a}
))}
);
}
/* ============================================================
Blog teaser
============================================================ */
function BlogTeaser({ t, lang }) {
return (