@@ -165,6 +165,21 @@ export default function KruskalVisualizer() {
165165
166166 return (
167167 < div className = "w-full" >
168+ { /* 🧭 Manual / Instructions */ }
169+ < div className = "max-w-4xl mx-auto mb-6 p-4 bg-gray-900 border border-gray-700 rounded-lg shadow-md text-sm text-gray-300" >
170+ < h3 className = "text-indigo-400 font-bold mb-2 text-center" >
171+ How to Use the Kruskal Visualizer
172+ </ h3 >
173+ < ul className = "list-disc pl-6 space-y-1" >
174+ < li > < b > Double-click</ b > on the canvas to create a node.</ li >
175+ < li > < b > Click one node</ b > and then another to create an edge.</ li >
176+ < li > You’ll be prompted to enter the < b > edge weight</ b > .</ li >
177+ < li > Once your graph is ready, click < b > Start Visualization</ b > .</ li >
178+ < li > The algorithm will highlight edges being considered, added, or skipped.</ li >
179+ < li > The < b > DSU panel</ b > on the left updates in real time to show connected components.</ li >
180+ < li > Click < b > Reset</ b > to clear and start again.</ li >
181+ </ ul >
182+ </ div >
168183 { /* Controls */ }
169184 < div className = "flex gap-4 mb-6 justify-center" >
170185 < button
@@ -187,13 +202,20 @@ export default function KruskalVisualizer() {
187202 </ button >
188203 </ div >
189204
190- < div className = "text-sm text-center text-indigo-300 mb-6" >
191- < p > Status: < span className = "font-medium text-indigo-400" > { status } </ span > </ p >
192- < p > Step: < span className = "font-medium text-indigo-400" > { stepIndex } </ span > </ p >
205+ { /* Status + Step */ }
206+ < div className = "text-sm text-center text-indigo-300 mb-4" >
207+ < p >
208+ Status: < span className = "font-medium text-indigo-400" > { status } </ span >
209+ </ p >
210+ < p >
211+ Step: < span className = "font-medium text-indigo-400" > { stepIndex } </ span >
212+ </ p >
193213 </ div >
194214
215+
216+
195217 { /* Layout: DSU Panel + Graph */ }
196- < div className = "flex w-full max-w-6xl" >
218+ < div className = "flex w-full max-w-6xl mx-auto " >
197219 { /* Left DSU Panel */ }
198220 < div className = "w-1/4 bg-gray-900 border border-gray-700 rounded-lg p-3 mr-6 shadow-lg" >
199221 < h2 className = "text-lg font-bold mb-3 text-center text-indigo-400" >
0 commit comments