Implement landing page according to Figma design - Use BEM and SCSS
Adapt the page to the following screens:
- Large screens 2560px
- The design 1600px
- Desktop 1280px
- Small desktop 1024px
- Tablet 640px
- Mobile (> 320px)
- Implement the header with
nav
. - Implement
Strategic agency
block. - Implement slider (You may start with a single picture).
- implement slider block as absolutely positioned element with
right: 0
andbottom: 0
position inside the black container - on large screens limit the width of black container to 1600px, so that left outer space have a standart grey background color
- implement slider block as absolutely positioned element with
- Implement
Who we are
block. - Implement
Our expertise
block with the card reused 3 times. - Implement
Process
block with 4 process cards.- use
trasnlateY(-50%)
to move cards up
- use
- Implement
Testimonials
block.- each card should have a fixed width and on the small screens the whole block should switch to column layout
- Implement
Vision, Passion, Results
block.- use https://github.com/mate-academy/layout_dia/blob/master/src/images/Shapes.png as background picture
- Implement
Send us a message
block. - Implement
Contact us
block. - Implement the footer.
- Don’t forget to add the title “Air” for the whole web page
- 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
- 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
- The "Learn more" button should lead to the closest block (Our expertise)
- The "Hire Us" button in the header menu should lead to the contact form
- In the PROCESS section add a hover effect to cards (for example, let them increase in size a little)
- Inside the cards in PROCESS sections, make a link out of the "Learn More" text, so that it hovers simultaneously with the arrow button on the left
- In the Vision, Passion, Results section, the “Apply” button also should lead to the contact form
- In the Testimonials and Our expertise section add hover effects for each review
- After clicking the menu buttons, the landing page will scroll exactly to the beginning of the desired block (exactly where its section begins)
- The arrows at the bottom of the first block should not respond slowly to pressing (this is possible if the pictures are too large)
- When a user clicks on Address Google Maps is opened in a new tab
- The user must have the opportunity to conveniently write 2-3 lines of text in the message field
- OPTIONAL: After everything is done, you can implement the slider on the hero page (you can find images for it on Unsplash)
- 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.