Skip to content

Commit ccaccc2

Browse files
committed
refactor: remove unused motion
1 parent 18f46ae commit ccaccc2

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/components/ImplementationGuide.jsx

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
import { useState } from "react"
2-
import { motion } from "framer-motion"
32
import { CheckCircle2 } from "lucide-react"
43

54
const implementationSteps = [
@@ -78,7 +77,7 @@ export default function ImplementationGuide() {
7877
))}
7978
</div>
8079

81-
<motion.div
80+
<div
8281
key={activeStep}
8382
initial={{ opacity: 0, y: 20 }}
8483
animate={{ opacity: 1, y: 0 }}
@@ -97,7 +96,7 @@ export default function ImplementationGuide() {
9796
</div>
9897
))}
9998
</div>
100-
</motion.div>
99+
</div>
101100

102101
<div className="mt-12 text-center">
103102
<button className="bg-purple-700 hover:bg-purple-800 text-white font-medium py-3 px-6 rounded-lg shadow-md transition-colors">
@@ -107,4 +106,4 @@ export default function ImplementationGuide() {
107106
</div>
108107
</section>
109108
)
110-
}
109+
}

0 commit comments

Comments
 (0)