diff --git a/package.json b/package.json
index 6425076..689619d 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "stack-builder",
"private": true,
- "version": "1.1.0",
+ "version": "1.1.1",
"type": "module",
"scripts": {
"dev": "vite",
diff --git a/src/App.tsx b/src/App.tsx
index 3035ae3..b170dd0 100644
--- a/src/App.tsx
+++ b/src/App.tsx
@@ -3,6 +3,7 @@ import Buildpage from "./pages/Builder";
import LandingPage from "./pages/LandingPage";
import i18n from "./i18n";
import { useEffect } from "react";
+import NotFound from "./pages/NotFound";
function LangLayout() {
const { lang } = useParams();
@@ -33,6 +34,7 @@ function LangLayout() {
} />
} />
+ } />
);
}
diff --git a/src/components/command-step.tsx b/src/components/command-step.tsx
index e9a17b7..b5c9ca7 100644
--- a/src/components/command-step.tsx
+++ b/src/components/command-step.tsx
@@ -35,7 +35,12 @@ export default function CommandStep({ step, index }: CommandStepProps) {
{step.label}
-