Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
sahirgomez1 committed Jun 21, 2021
1 parent 2ea3cef commit d934049
Show file tree
Hide file tree
Showing 25 changed files with 4,214 additions and 80 deletions.
3,053 changes: 3,048 additions & 5 deletions package-lock.json

Large diffs are not rendered by default.

9 changes: 8 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,20 @@
"version": "0.1.0",
"private": true,
"dependencies": {
"@react-three/drei": "^6.0.3",
"@react-three/fiber": "^7.0.1",
"@testing-library/jest-dom": "^5.13.0",
"@testing-library/react": "^11.2.7",
"@testing-library/user-event": "^12.8.3",
"bootstrap": "^5.0.1",
"node-sass": "^6.0.0",
"react": "^17.0.2",
"react-bootstrap": "^1.6.1",
"react-dom": "^17.0.2",
"react-scripts": "4.0.3",
"web-vitals": "^1.1.2"
"three": "^0.129.0",
"web-vitals": "^1.1.2",
"zustand": "^3.5.2"
},
"scripts": {
"start": "react-scripts start",
Expand Down
180 changes: 180 additions & 0 deletions public/banana.gltf

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
work correctly both with client-side routing and a non-root public URL.
Learn how to configure a non-root public URL by running `npm run build`.
-->
<title>React App</title>
<title>Tactile Dataset</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
Binary file removed public/logo192.png
Binary file not shown.
Binary file removed public/logo512.png
Binary file not shown.
10 changes: 0 additions & 10 deletions public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,6 @@
"src": "favicon.ico",
"sizes": "64x64 32x32 24x24 16x16",
"type": "image/x-icon"
},
{
"src": "logo192.png",
"type": "image/png",
"sizes": "192x192"
},
{
"src": "logo512.png",
"type": "image/png",
"sizes": "512x512"
}
],
"start_url": ".",
Expand Down
38 changes: 0 additions & 38 deletions src/App.css

This file was deleted.

29 changes: 11 additions & 18 deletions src/App.js
Original file line number Diff line number Diff line change
@@ -1,24 +1,17 @@
import logo from './logo.svg';
import './App.css';
import TopSection from './components/TopSection';
import DashboardNavbar from './components/DashboardNavbar';
import Header from './components/Header';

function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/App.js</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
</header>
</div>
<>
<div className="main-content">
<DashboardNavbar/>
<Header/>
<TopSection/>

</div>
</>
);
}

Expand Down
Loading

0 comments on commit d934049

Please sign in to comment.