Skip to content

queseri/audiophile-ecommerce-website

Repository files navigation

Frontend Mentor - Audiophile e-commerce website solution

This is a solution to the Audiophile e-commerce 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 the app depending on their device's screen size
  • See hover states for all interactive elements on the page
  • Add/Remove products from the cart
  • Edit product quantities in the cart
  • Fill in all fields in the checkout
  • Receive form validations if fields are missed or incorrect during checkout
  • See correct checkout totals depending on the products in the cart
    • Shipping always adds $50 to the order
    • VAT is calculated as 20% of the product total, excluding shipping
  • See an order confirmation modal after checking out with an order summary

Screenshot

home page desktop speakers page desktop headphones page desktop earphones page desktop checkout page stage 1 checkout complete page confirmation modal cart empty cart populated

Links

My process

Built with

  • Semantic HTML5 markup
  • CSS custom properties
  • Flexbox
  • CSS Grid
  • Mobile-first workflow
  • React - JS library
  • Sass - For styles
  • MongoDb - database

What I learned

Finding the aspect ratio for a background image

given an image that is to be used as a background image where the height and width of the container is not specified. The background image will not show up , unless or until the width(which can be specified by width: 100% ) and height are given. Setting the height is a bit tricky as using height: 100% does not work. We need to find the aspect ratio for the image to be displayed properly. Read more on here - Background image - aspect ratio Solution:

<div class="main-container">
    <div class="bg-img-container">
        <div class="inner-container">
            
        </div>
    </div>
</div>
.bg-img-container {
 background-image: url("../addresshere");
 background-repeat: no-repeat;
 background-position: center center;
 background-size: contain;
}

.inner-container {
    display: block;
    height: 0;
    padding-top: (height-of-img / width-of-height * 100)%;
}
/* Hide the fieldset after an invalid fieldset */
fieldset:invalid~fieldset {
    display: none;
}

Useeffect

A complete guide to useEffect

Continued development

Useful resources

Author

Acknowledgments

This is where you can give a hat tip to anyone who helped you out on this project. Perhaps you worked in a team or got some inspiration from someone else's solution. This is the perfect place to give them some credit.