diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index b33b4a8..a5e2a49 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -9,23 +9,6 @@ "postAttachCommand": { "server": "npm start" }, - /* - "customizations": { - "codespaces": { - "openFiles": [ - "src/App.jsx" - ] - } - }, - */ - /* - "portsAttributes": { - "3000": { - "label": "Application", - "onAutoForward": "openPreview" - } - }, - */ "forwardPorts": [ 3000 ], diff --git a/.vscode/launch.json b/.vscode/launch.json deleted file mode 100644 index ac26a0f..0000000 --- a/.vscode/launch.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "version": "0.2.0", - "configurations": [ - { - "name": "Run application", - "type": "node", - "request": "launch", - "cwd": "${workspaceFolder}", - "console": "integratedTerminal", - "runtimeExecutable": "npm", - "runtimeArgs": [ - "run-script", - "start" - ], - "skipFiles": [ - "/**" - ] - } - ] - } \ No newline at end of file diff --git a/heatpath.code-workspace b/heatpath.code-workspace deleted file mode 100644 index c4f7757..0000000 --- a/heatpath.code-workspace +++ /dev/null @@ -1,29 +0,0 @@ -{ - "folders": [ - { - "name": "heatpath", - "path": "." - }, - { - "name": "src", - "path": "src" - }, - { - "name": "components", - "path": "src/components" - }, - { - "name": "data", - "path": "src/data" - }, - { - "name": "pages", - "path": "src/pages" - }, - { - "name": "styles", - "path": "src/styles" - } - ], - "settings": {} -} \ No newline at end of file diff --git a/jsconfig.json b/jsconfig.json deleted file mode 100644 index e2367b2..0000000 --- a/jsconfig.json +++ /dev/null @@ -1,5 +0,0 @@ -{ - "compilerOptions": { - "moduleResolution": "node" - } - } \ No newline at end of file diff --git a/src/components/InfoButton.jsx b/src/components/InfoButton.jsx deleted file mode 100644 index 4a3017c..0000000 --- a/src/components/InfoButton.jsx +++ /dev/null @@ -1,19 +0,0 @@ -import React from 'react'; -import { IconButton } from '@mui/material'; -import { Link } from 'react-router-dom'; - -import InfoIcon from '@mui/icons-material/Info'; - -export default function InfoButton() { - return ( - // Link to the sources page - - - - - - ); -} \ No newline at end of file