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

35 lines
1.4 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 MetricsFeatureCards from '@/components/sections/metrics/MetricsFeatureCards';
import SectionErrorBoundary from "@/components/ui/SectionErrorBoundary";
export default function ProcessSection(): React.JSX.Element {
return (
<div id="process" data-section="process">
<SectionErrorBoundary name="process">
<MetricsFeatureCards
tag="작업 과정"
title="누수탐지 및 수리 프로세스"
description="과학적인 장비를 이용해 원인을 찾고, 최소한의 비용으로 확실한 결과만 제공합니다."
metrics={[
{
value: "01", title: "정밀 진단", features: [
"상담 문의", "현장 방문", "공압 검사"],
},
{
value: "02", title: "원인 분석", features: [
"가스 탐지", "청음 탐지", "원인 부위 특정"],
},
{
value: "03", title: "수리 및 재검사", features: [
"부분 수리", "재검사 확인", "사후 정리"],
},
]}
/>
</SectionErrorBoundary>
</div>
);
}