File tree Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Expand file tree Collapse file tree 1 file changed +3
-4
lines changed Original file line number Diff line number Diff line change 11import { useState } from "react"
2- import { motion } from "framer-motion"
32import { CheckCircle2 } from "lucide-react"
43
54const 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+ }
You can’t perform that action at this time.
0 commit comments