Implement landing page according to Figma design - Use BEM and SCSS
- Large screens 2560px
- Full HD 1920px
- The design 1600px
- Notebook 1280px
- Tablet 1024
- Mobile (> 320px)
- Don’t forget to add a title for the whole web page (it could be the name of your landing)
- A landing page is implemented strictly according to the design in Figma
- Links in the header and footer menus should lead to the corresponding blocks of the landing page
- The speed of animations is the same throughout the landing page (for example, increasing when hovering or moving blocks when scrolling)
- Placeholders in the forms suggest what to enter, and if there is a validation of the form, then it is clear in what format to enter the phone number
- Make sure everything looks neat on mobile and without horizontal scrolling
- Add favicon
- Add a smooth scroll for the whole page
- The “learn more” button leads to the “About us” block
- It would be more realistic if the arrows in the hero section next to the product photo were clickable (or hide these arrows if there are no other photos for the slider)
- The "all bakeries" button leads to the BakerShops block
- In the "Bakershops" block, add a drop-down list with a list of cities and addresses in which this store is located (and when you try to click on "Search" let the form just be cleared)
- When you try to send the Bakershops search form there is no 405 error and the form is automatically cleared after submit and is scrolled to the top of the page or the page is reloaded
- Menu footer buttons when clicked should lead to the relevant blocks of the landing page
- The user must have the opportunity to write 2-3 lines of text in the message field
- In the form at the end of the page, do not forget to add a placeholder for the message field
- The form shouldn’t accept incorrect data in a field with a phone number (for example, a number with a letter and there was no error), give this and all inputs a correct input type
- When you try to send the form there is no 405 error and the form is automatically cleared after submit and is scrolled to the top of the page or the page is reloaded
- The form shouldn’t submit empty
- Fork the repo.
- Clone the forked one. (The project link should have your name but not
mate-academy
) - Run
npm install
(or justnpm i
). - Run
npm start
. - Open one more terminal window for the next steps.
git checkout -b develop
- to create new branch and switch on it.- Write you code in
src
folder. - Run
npm run lint
and fix code style errors. - Run
npm run deploy
to deploy your solution togh-pages
. git add . && git commit -m 'solution'
to save your changes.git push origin develop
- to send you code for PR.- Create a Pull Request (PR) from your branch
develop
to branchmaster
of original repo. - Replace
<your_account>
with your Github username in the DEMO LINK. - Copy
DEMO LINK
to the PR description.
To update you PR repeat steps 7-11.