Files
1eb08ce8-e7d1-41ad-b27b-2a1…/src/pages/HomePage/sections/Faq.tsx
2026-06-14 01:26:14 +00:00

31 lines
1.4 KiB
TypeScript

// AUTO-GENERATED by per-section-migrate. Edit freely — Bob will treat this
// file as the canonical source for the "faq" section.
import React from 'react';
import FaqTwoColumn from '@/components/sections/faq/FaqTwoColumn';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function FaqSection(): React.JSX.Element {
return (
<div id="faq" data-section="faq">
<SectionErrorBoundary name="faq">
<FaqTwoColumn
tag="자주 묻는 질문"
title="무엇이든 물어보세요."
description="누수 문제와 관련된 궁금증을 해결해 드립니다."
items={[
{
question: "비용은 어떻게 결정되나요?", answer: "현장 상황과 누수 부위에 따라 다르지만, 정직한 견적으로 작업합니다."},
{
question: "당일 수리가 가능한가요?", answer: "네, 최대한 당일 해결을 목표로 정밀하게 작업해 드립니다."},
{
question: "해결 못 하면 어떻게 하나요?", answer: "해결하지 못한다면 비용을 일절 받지 않습니다."},
{
question: "상담 시간은 어떻게 되나요?", answer: "자정까지 전화 상담이 가능합니다."},
]}
/>
</SectionErrorBoundary>
</div>
);
}