diff --git a/app/visualizer/searching/binarysearch/page.jsx b/app/visualizer/searching/binarysearch/page.jsx
index 1909979..fb67b3f 100644
--- a/app/visualizer/searching/binarysearch/page.jsx
+++ b/app/visualizer/searching/binarysearch/page.jsx
@@ -56,7 +56,7 @@ export const metadata = {
export default function Page() {
const paths = [
{ name: "Home", href: "/" },
- { name: "Visulaizer", href: "/visualizer" },
+ { name: "Visualizer", href: "/visualizer" },
{ name: "Binary Search", href: "" },
];
diff --git a/app/visualizer/searching/linearsearch/page.jsx b/app/visualizer/searching/linearsearch/page.jsx
index fe12aef..b40237f 100644
--- a/app/visualizer/searching/linearsearch/page.jsx
+++ b/app/visualizer/searching/linearsearch/page.jsx
@@ -56,7 +56,7 @@ export const metadata = {
export default function Page() {
const paths = [
{ name: "Home", href: "/" },
- { name: "Visulaizer", href: "/visualizer" },
+ { name: "Visualizer", href: "/visualizer" },
{ name: "Linear Search", href: "" },
];
diff --git a/app/visualizer/sorting/bubblesort/page.jsx b/app/visualizer/sorting/bubblesort/page.jsx
index c9b6b6f..f5198f3 100644
--- a/app/visualizer/sorting/bubblesort/page.jsx
+++ b/app/visualizer/sorting/bubblesort/page.jsx
@@ -40,7 +40,7 @@ export const metadata = {
openGraph: {
images: [
{
- url: "/og/bubbleSort.png",
+ url: "/og/sorting/bubbleSort.png",
width: 1200,
height: 630,
alt: "Bubble Sort Algorithm Visualization",
@@ -52,7 +52,7 @@ export const metadata = {
export default function Page() {
const paths = [
{ name: "Home", href: "/" },
- { name: "Visulaizer", href: "/visualizer" },
+ { name: "Visualizer", href: "/visualizer" },
{ name: "Bubble Sort", href: "" },
];
diff --git a/app/visualizer/sorting/insertionsort/page.jsx b/app/visualizer/sorting/insertionsort/page.jsx
index 9d13021..1a67094 100644
--- a/app/visualizer/sorting/insertionsort/page.jsx
+++ b/app/visualizer/sorting/insertionsort/page.jsx
@@ -52,7 +52,7 @@ export const metadata = {
export default function Page() {
const paths = [
{ name: "Home", href: "/" },
- { name: "Visulaizer", href: "/visualizer" },
+ { name: "Visualizer", href: "/visualizer" },
{ name: "Insertion Sort", href: "" },
];
diff --git a/app/visualizer/sorting/mergesort/content.jsx b/app/visualizer/sorting/mergesort/content.jsx
index ef15f62..4e73d82 100644
--- a/app/visualizer/sorting/mergesort/content.jsx
+++ b/app/visualizer/sorting/mergesort/content.jsx
@@ -43,8 +43,30 @@ const content = () => {
];
return (
-
diff --git a/app/visualizer/sorting/selectionsort/content.jsx b/app/visualizer/sorting/selectionsort/content.jsx
index 49a3441..ba9f2b4 100644
--- a/app/visualizer/sorting/selectionsort/content.jsx
+++ b/app/visualizer/sorting/selectionsort/content.jsx
@@ -73,8 +73,30 @@ const content = () => {
];
return (
-
@@ -172,9 +194,7 @@ const content = () => {
{items.points}
-
- {items.subpoints}
-
+ {items.subpoints}
))}
@@ -184,13 +204,13 @@ const content = () => {
{paragraph[3]}
@@ -262,4 +282,4 @@ const content = () => { ); }; -export default content; \ No newline at end of file +export default content; diff --git a/app/visualizer/sorting/selectionsort/page.jsx b/app/visualizer/sorting/selectionsort/page.jsx index 918177b..91959a1 100644 --- a/app/visualizer/sorting/selectionsort/page.jsx +++ b/app/visualizer/sorting/selectionsort/page.jsx @@ -36,7 +36,7 @@ export const metadata = { openGraph: { images: [ { - url: "/og/selectionSort.png", + url: "/og/sorting/selectionSort.png", width: 1200, height: 630, alt: "Selection Sort Algorithm Visualization", @@ -60,7 +60,7 @@ export default function Page() {Test Your Knowledge before moving forward!