/Space-tourism-multi-page-website

i was tasked this challenge to build out this multi-page space tourism website and get it looking as close to the original design as possible.

Primary LanguageJavaScript

Frontend Mentor - Space tourism website solution

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.

Table of contents

Overview

The challenge

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

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Flexbox
  • CSS Grid
  • Mobile-first workflow
  • React - JS library
  • Styled Components - For styles

What I learned

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;

Continued development

The next areas of development are redux and responsive designs

Author