diff --git a/README.md b/README.md index 9d6fa78..f1c4958 100644 --- a/README.md +++ b/README.md @@ -2,16 +2,14 @@ Hey there, welcome to my personal website. This is a portfolio website built on the theme of MacOS made with ReactJs and TailwindCSS. -This is currently under development. - -# UNDER DEVELOPMENT :construction: on :apple: ## Features present currently -* MacOs Bash terminal support for basic commands like ls, cd ,clear. +* MacOs Bash terminal support for basic commands like ls, cd ,clear, touch and open. * Opening of multiple windows * Changing of desktop background -* And Obviously - My Portfolio in a window ( working on it). +* And Obviously - My Portfolio in a window ( about me ). +* Spotlight ( ctrl + space to activate ) ## Contributions are most welcome diff --git a/src/Components/Spotlight.js b/src/Components/Spotlight.js index 94ebe38..70372e4 100644 --- a/src/Components/Spotlight.js +++ b/src/Components/Spotlight.js @@ -86,9 +86,9 @@ const SpotLight = () => { if ( index === 0) { dispatch({ type: "NEW_WINDOW", payload: { id: 'TERMINAL', header: true, title: "Terminal" } }) } else if ( index === 1 ){ - dispatch({ type: "NEW_WINDOW", payload: { id: 'RANDOM', header: true, title: "Mail" } }) + dispatch({ type: "NEW_WINDOW", payload: { id: 'MAIL', header: true, title: "Mail" } }) } else if ( index === 2 ){ - dispatch({ type: "NEW_WINDOW", payload: { id: 'RANDOM', header: true, title: "Finder" } }) + dispatch({ type: "NEW_WINDOW", payload: { id: 'PROFILE', header: true, title: "Hello" } }) } setShow(false);