diff --git a/.run/npm dev.run.xml b/.run/npm dev.run.xml
new file mode 100644
index 0000000..62269f2
--- /dev/null
+++ b/.run/npm dev.run.xml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/index.html b/index.html
index e4b78ea..d4da836 100644
--- a/index.html
+++ b/index.html
@@ -2,9 +2,8 @@
-
- Vite + React + TS
+ REMind
diff --git a/package-lock.json b/package-lock.json
index f32fdbc..deeee0b 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -3776,6 +3776,13 @@
"typescript": ">=4.8.4"
}
},
+ "node_modules/tslib": {
+ "version": "2.8.1",
+ "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz",
+ "integrity": "sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==",
+ "license": "0BSD",
+ "optional": true
+ },
"node_modules/type-check": {
"version": "0.4.0",
"resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz",
diff --git a/public/vite.svg b/public/vite.svg
deleted file mode 100644
index e7b8dfb..0000000
--- a/public/vite.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/src/assets/react.svg b/src/assets/react.svg
deleted file mode 100644
index 6c87de9..0000000
--- a/src/assets/react.svg
+++ /dev/null
@@ -1 +0,0 @@
-
\ No newline at end of file
diff --git a/src/components/Navbar.tsx b/src/components/Navbar.tsx
index 45763fb..3e300bd 100644
--- a/src/components/Navbar.tsx
+++ b/src/components/Navbar.tsx
@@ -3,27 +3,36 @@ import {FaArchive, FaHome, FaList, FaMicrophone, FaUser} from "react-icons/fa";
export default function Navbar() {
const linkClasses = ({isActive}: { isActive: boolean }) =>
- isActive
- ? 'text-blue-600 font-semibold'
- : 'text-gray-600';
+ isActive ? 'text-fuchsia-50 font-semibold' : 'text-fuchsia-50';
return (
-