diff --git a/src/pages/business/MaintenancePage.jsx b/src/pages/business/MaintenancePage.jsx index 2cdf56b..da78339 100644 --- a/src/pages/business/MaintenancePage.jsx +++ b/src/pages/business/MaintenancePage.jsx @@ -1,8 +1,13 @@ import SubHero from "../../components/SubHero"; import useFadeIn from "../../hooks/useFadeIn"; +import { useRef } from "react"; +import { motion, useInView } from "framer-motion"; function MaintenancePage() { const ref = useFadeIn(); + const introRef = useRef(null); + const introInView = useInView(introRef, { once: true, margin: "-60px" }); + const ease = [0.22, 1, 0.36, 1]; const BUSINESS_NAV = [ { label: "System Integration", to: "/business/si" }, { label: "R&D", to: "/business/rnd" }, @@ -24,28 +29,21 @@ function MaintenancePage() { />
-
- 운영 · 유지보수 - {/*
-
-
-

운영 · 유지보수

-

Operation & Maintenance

-
-
- -
-
-

안정적인 시스템 운영과 사후 관리

-

- 구축 이후에도 끊김 없는 서비스 운영을 위해 -
- 장기 파트너십 기반의 유지보수를 제공합니다. -

-
-
-
*/} -
+
+ {/* 개요 인트로 */} +
+
+ + Overview + + + 운영부터 개선까지 +
+ 전문적인 관리 서비스 +
+
+
+
);