Skip to content

Commit

Permalink
useless assets deleted and one more route added
Browse files Browse the repository at this point in the history
  • Loading branch information
MelissaOlas committed Nov 7, 2021
1 parent 6a8299e commit de8a88e
Show file tree
Hide file tree
Showing 25 changed files with 159 additions and 64,306 deletions.
10 changes: 6 additions & 4 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,12 @@
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="description" content="App created using react-starter-wcs" />
<title>WIN</title>
<link rel="icon" type="image/png" sizes="32x32" href="src/components/assets/favicon.ico" />
<link rel="icon" type="image/png" sizes="16x16" href="src/components/assets/favicon.ico" />
<link rel="manifest" href="/site.webmanifest" />
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5" />
<link rel="apple-touch-icon" sizes="180x180" href="/src/components/assets/favicon/apple-touch-icon.png" />
<link rel="icon" type="image/png" sizes="32x32" href="./src/components/assets/favicon/favicon-32x32.png" />
<link rel="icon" type="image/png" sizes="16x16" href="./src/components/assets/favicon/favicon-16x16.png" />
<link rel="manifest" href="/src/components/assets/favicon/site.webmanifest" />
<meta name="msapplication-TileColor" content="#ffc40d" />
<meta name="theme-color" content="#ffffff" />
</head>
<body>
<noscript> You need JavaScript to run this ! </noscript>
Expand Down
18 changes: 17 additions & 1 deletion src/App.jsx
Original file line number Diff line number Diff line change
@@ -1,11 +1,27 @@
import React from 'react';
import LandingPage from './Components/LandingPage';
import './App.css';
import ContactForm from './components/contactForm';
// import Nav from './components/Nav';
import WinSquad from './components/squadPictures';
import { BrowserRouter as Router, Route, Switch } from 'react-router-dom';

function App() {
return (
<div>
<LandingPage />{' '}
<Router>
<div>
<Switch>
<Route exact path="/Components/LandingPage" component={LandingPage}>
<LandingPage />
</Route>
<Route path="/Components/LandingPage/About" component={(WinSquad, ContactForm)}>
<WinSquad />
<ContactForm />
</Route>
</Switch>
</div>
</Router>
</div>
);
}
Expand Down
13 changes: 0 additions & 13 deletions src/Components/AppLanding.jsx

This file was deleted.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
9 changes: 9 additions & 0 deletions src/Components/assets/favicon/browserconfig.xml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<browserconfig>
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#ffc40d</TileColor>
</tile>
</msapplication>
</browserconfig>
Binary file added src/Components/assets/favicon/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Components/assets/favicon/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/Components/assets/favicon/favicon.ico
Binary file not shown.
Binary file added src/Components/assets/favicon/mstile-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
79 changes: 79 additions & 0 deletions src/Components/assets/favicon/safari-pinned-tab.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
19 changes: 19 additions & 0 deletions src/Components/assets/favicon/site.webmanifest
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"name": "",
"short_name": "",
"icons": [
{
"src": "/android-chrome-192x192.png",
"sizes": "192x192",
"type": "image/png"
},
{
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
"theme_color": "#ffffff",
"background_color": "#ffffff",
"display": "standalone"
}
File renamed without changes
Loading

0 comments on commit de8a88e

Please sign in to comment.