This is a solution to the Space tourism website challenge on Frontend Mentor. Frontend Mentor challenges help you improve your coding skills by building realistic projects.
- Overview
- [The challenge](#Space tourism website solution)
- Links
- My process
- Built with
- [What I learned](#routing with react)
- Continued development
- Useful resources
- Author
- Acknowledgments
Users should be able to:
- View the optimal layout for each of the website's pages depending on their device's screen size
- See hover states for all interactive elements on the page
- View each page and be able to
- Solution URL: Add solution URL here
- Live Site URL: Add live site URL here
- Semantic HTML5 markup
- CSS custom properties
- Flexbox
- CSS Grid
- Mobile-first workflow
- React - JS library
- Styled Components - For styles
Use this section to recap over some of your major learnings while working through this project. Writing these out and providing code samples of areas you want to highlight is a great way to reinforce your own knowledge.
const proudOfThisFunc = () => {
console.log('🎉')
}
import "./App.css" import Home from "./components/homePage"; import Header from "./components/header"; import Destination from "./components/destinationPage"; import Crew from "./components/crewpage"; import { BrowserRouter as Router, Switch, Route } from 'react-router-dom'; import Technology from "./components/technologyPage";
function App() {
return (
<Route path = "/destination">
<Destination />
</Route>
<Route path = "/crew">
<Crew/>
</Route>
<Route path = "/technology">
<Technology/>
</Route>
</Switch>
</div>
</Router>
); }
export default App;
The next areas of development are redux and responsive designs
- Website - Add your name here
- Frontend Mentor - @yourusername
- Twitter - @yourusername