generated from Technigo/react-starter
-
Notifications
You must be signed in to change notification settings - Fork 57
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Project Design Handoff #48
Open
LinaAdamsson
wants to merge
6
commits into
Technigo:master
Choose a base branch
from
LinaAdamsson:master
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
0ccb736
Added components.
66918c7
Added components and some styling from provided Figma file.
a04cf16
Redid components and started structuring the page with sections etc. …
60d1e55
Tried out different ways of naming and structuring everything. Added …
6465daf
Modified components, added vectors, images and css
854c9cf
Took away navbar and unnecessary css features
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,24 @@ | ||
import React from 'react' | ||
import React from 'react'; | ||
import Header from 'components/Header.js'; | ||
import Intro from 'components/Intro.js'; | ||
import Overview from 'components/Overview.js'; | ||
import Selection from 'components/Selection.js'; | ||
import Quiz from 'components/Quiz.js'; | ||
import Reviews from 'components/Reviews.js'; | ||
import Form from 'components/Form.js'; | ||
import Footer from 'components/Footer.js'; | ||
|
||
export const App = () => { | ||
return ( | ||
<div> | ||
Find me in src/app.js! | ||
<div className="landingPage"> | ||
<Header /> | ||
<Intro /> | ||
<Overview /> | ||
<Selection /> | ||
<Quiz /> | ||
<Reviews /> | ||
<Form /> | ||
<Footer /> | ||
</div> | ||
) | ||
} | ||
} |
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.
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.
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.
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.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
/* eslint-disable */ | ||
|
||
import React from 'react'; | ||
import '../css/Footer.css'; | ||
|
||
import LogoSmallonLightBackground from '../assets/Logo Small on Light Background.svg'; | ||
import FacebookIcon from '../assets/Facebook.svg' | ||
import InstagramIcon from '../assets/InstagramIcon.svg' | ||
import TikTokIcon from '../assets/TikTokIcon.svg' | ||
|
||
const Footer = () => { | ||
return ( | ||
<div className="footerContainer"> | ||
<img className="logoFooter" src={LogoSmallonLightBackground} alt="Logo for Raise Studio" /> | ||
<p>Vallgatan 6</p> | ||
<p>223 61, Lund</p> | ||
<div className="company"> | ||
<h4>Company</h4> | ||
<p>About Us</p> | ||
<p>Contact Us</p> | ||
<p>Our Studio</p> | ||
<p>FAQs</p> | ||
</div> | ||
<div className="classes"> | ||
<h4>Classes</h4> | ||
<p>Pricing</p> | ||
<p>Schedule</p> | ||
<p>Instructors</p> | ||
<p>About Barre</p> | ||
<p className="followUs">Follow Us</p> | ||
</div> | ||
<div className="iconsContainer"> | ||
<img className="facebook" src={FacebookIcon} alt="Facebook" /> | ||
<img className="instagram" src={InstagramIcon} alt="Instagram" /> | ||
<img className="tikTok" src={TikTokIcon} alt="TikTok" /> | ||
</div> | ||
</div> | ||
) | ||
} | ||
|
||
export default Footer; |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Curious as to why you need a landing page classname if you’re not going to do any additional styling to it?