Skip to content

Commit 4774346

Browse files
committed
cleaned repo
1 parent bb7bd82 commit 4774346

File tree

13 files changed

+248
-43
lines changed

13 files changed

+248
-43
lines changed

package-lock.json

Lines changed: 208 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
"web-vitals": "^2.1.4"
1717
},
1818
"scripts": {
19+
"predeploy": "npm run build",
1920
"deploy": "gh-pages -d build",
2021
"start": "export SET NODE_OPTIONS=--openssl-legacy-provider && react-scripts start",
2122
"build": "react-scripts build",
@@ -40,6 +41,6 @@
4041
]
4142
},
4243
"devDependencies": {
43-
"gh-pages": "^6.1.1"
44+
"gh-pages": "^6.3.0"
4445
}
4546
}

public/favicon.ico

-3.78 KB
Binary file not shown.

index.html renamed to public/index.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
name="description"
1010
content="Web site created using create-react-app"
1111
/>
12-
<link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" />
12+
<!-- <link rel="apple-touch-icon" href="%PUBLIC_URL%/logo192.png" /> -->
1313
<!--
1414
manifest.json provides metadata used when your web app is installed on a
1515
user's mobile device or desktop. See https://developers.google.com/web/fundamentals/web-app-manifest/
1616
-->
17-
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
17+
<!-- <link rel="manifest" href="%PUBLIC_URL%/manifest.json" /> -->
1818
<!--
1919
Notice the use of %PUBLIC_URL% in the tags above.
2020
It will be replaced with the URL of the `public` folder during the build.
@@ -27,7 +27,7 @@
2727
<title>Algorithm Vizualiser</title>
2828
</head>
2929
<body>
30-
<noscript>You need to enable JavaScript to run this app.</noscript>
30+
<!-- <noscript>You need to enable JavaScript to run this app.</noscript> -->
3131
<div id="root"></div>
3232
<!--
3333
This HTML file is a template.

public/logo192.png

-5.22 KB
Binary file not shown.

public/logo512.png

-9.44 KB
Binary file not shown.

src/App.css

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
body {
2+
margin: 0;
3+
padding: 0;
4+
background-color: #282c34;
5+
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
6+
'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
7+
sans-serif;
8+
-webkit-font-smoothing: antialiased;
9+
-moz-osx-font-smoothing: grayscale;
10+
}
11+
12+
13+
14+
code {
15+
font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
16+
monospace;
17+
}

src/components/GraphTraversalVisualiser/GraphTraversalVisualiser.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -172,7 +172,6 @@ const MatrixVisualization = () => {
172172
<option value='DFS'>DFS</option>
173173
<option value='UCS'>UCS</option>
174174
<option value='Astar'>Astar</option>
175-
{/* <option value='IDS'>IDS</option> */}
176175
</select>
177176
</label>
178177
<input

0 commit comments

Comments
 (0)