Files
db54863a-075b-406f-8d8b-f9b…/src/pages/HomePage/sections/Process.tsx

35 lines
1.3 KiB
TypeScript

// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "process" section.
import React from 'react';
import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ProcessSection(): React.JSX.Element {
return (
<div id="process" data-section="process">
<SectionErrorBoundary name="process">
<FaqTwoColumn
tag="Hogyan dolgozom?"
title="Az első lépéstől a nagy napig."
description="Egyszerű és átlátható folyamat, hogy a szervezés ne stresszel járjon."
items={[
{
question: "1. Egyeztetés",
answer: "Találkozunk, megismerjük egymást és átbeszéljük az elképzeléseiteket.",
},
{
question: "2. Szertartás tervezés",
answer: "Megírom a személyes szöveget és megtervezzük a szertartás menetét.",
},
{
question: "3. Az igazi nap",
answer: "Mindent biztosítok, hogy a szertartás zökkenőmentes és emlékezetes legyen.",
},
]}
/>
</SectionErrorBoundary>
</div>
);
}