-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Created the Drinks Menu page and styled it.
- Loading branch information
1 parent
776b1f2
commit 3960c67
Showing
9 changed files
with
61 additions
and
2 deletions.
There are no files selected for viewing
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
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,19 @@ | ||
.drinksPage-container { | ||
display: flex; | ||
justify-content: center; | ||
} | ||
|
||
.drinksPage-content { | ||
display: flex; | ||
flex-direction: column; | ||
align-items: center; | ||
gap: 40px; | ||
margin: 60px 0px; | ||
width: 100%; | ||
max-width: 1200px; | ||
} | ||
|
||
.drinksPage-content img { | ||
width: 100%; | ||
object-fit: contain; | ||
} |
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,35 @@ | ||
import React from 'react'; | ||
import './DrinksPage.css'; | ||
|
||
import Nav from '../Components/nav'; | ||
import Header from '../Components/homeHeader'; | ||
import Footer from '../Components/footer'; | ||
import SectionHeader from '../Components/SectionHeader'; | ||
|
||
import drinksMenu1 from '../images/drinksMenu1.jpg'; | ||
import drinksMenu2 from '../images/drinksMenu2.jpg'; | ||
import drinksMenu3 from '../images/drinksMenu3.jpg'; | ||
import drinksMenu4 from '../images/drinksMenu4.jpg'; | ||
import drinksMenu5 from '../images/drinksMenu5.jpg'; | ||
|
||
function DrinksPage() { | ||
return ( | ||
<div> | ||
<Nav /> | ||
<Header /> | ||
<SectionHeader SectionHeader_text="Drinks Menu"/> | ||
<div className='drinksPage-container section-margin'> | ||
<div className='drinksPage-content'> | ||
<img className='drinksMenu-image' src={drinksMenu1} alt='Drinks Menu'></img> | ||
<img className='drinksMenu-image' src={drinksMenu2} alt='Drinks Menu'></img> | ||
<img className='drinksMenu-image' src={drinksMenu3} alt='Drinks Menu'></img> | ||
<img className='drinksMenu-image' src={drinksMenu4} alt='Drinks Menu'></img> | ||
<img className='drinksMenu-image' src={drinksMenu5} alt='Drinks Menu'></img> | ||
</div> | ||
</div> | ||
<Footer></Footer> | ||
</div> | ||
) | ||
} | ||
|
||
export default DrinksPage |
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
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.