Exercise App using HTML, CSS, JavaScript and ReactJs

thumbnail

Introduction :

The Exercise app is a React.js-based web application designed to provide users with information about various exercises. It features a user-friendly interface that allows users to browse exercises, view detailed information about each exercise, and navigate between different sections of the app seamlessly. The app is styled using Material-UI (MUI) components and custom CSS, providing a modern and responsive design.

The Exercise app is designed to help users explore and learn about various exercises, targeting different body parts and muscle groups. The app provides a clean and intuitive interface, making it easy for users to navigate, search for exercises, and view detailed information about each exercise.

Explanation :

Project Structure
  1. index.js: This file is the entry point of the React application. It initializes the app by rendering the root component and sets up the BrowserRouter for routing.
  2. App.js: The main component that defines the structure of the application, including the layout and routing configuration.
  3. App.css: Contains global styles for the application, ensuring a consistent look and feel across all components.
  4. components: This directory contains reusable UI components such as Navbar and Footer.
  5. pages: This directory includes components that represent different pages of the application, such as Home and ExerciseDetail.
  6. assets: Contains static assets like images and icons used throughout the application.
Detailed Breakdown
index.js

Purpose:

    • Initializes the React application.
    • Renders the root component into the DOM.
    • Sets up client-side routing using BrowserRouter

Components:

      • React.StrictMode: Helps identify potential problems in an application.
      • BrowserRouter: Enables routing in the app.
      • App: The root component of the app.
App.js
  • Purpose:

    • Acts as the main layout component.
    • Defines the structure and layout of the application.
    • Configures routing for different pages.
  • Components:

    • Box: A Material-UI component used for layout purposes.
    • Navbar: The top navigation bar component.
    • Routes: Contains all the route definitions.
    • Route: Defines specific paths and the components that should be rendered for those paths.
    • Footer: The footer component.
App.css
  • Purpose:

    • Provides global styling for the application.
    • Ensures a consistent look and feel across all components.
    • Includes custom styles for interactive elements and responsiveness.
  • Key Styles:

    • Global font and background color.
    • Custom styles for interactive elements like arrows and cards.
    • Media queries for responsive design adjustments.
BodyPart.js
  • Purpose:

    • Represents a selectable body part used for filtering exercises.
    • Handles user interaction to select and highlight a body part.
  • Functionality:

    • Uses Material-UI’s Stack for layout and Typography for text styling.
    • Includes an onClick event handler to update the selected body part and scroll the page smoothly to a specific section.
Detail.js
    • Purpose:

      • Displays detailed information about a specific exercise.
      • Showcases various aspects of an exercise such as the body part, target muscle, equipment, and an animated GIF of the exercise.
    • Functionality:

      • Receives exercise details as props.
      • Utilizes Material-UI components for layout and styling.
      • Maps through additional details to display related information with icons.
ExerciseCard.js
  • Purpose:

    • Represents an individual exercise in a list or grid.
    • Provides a link to the detailed view of the exercise.
  • Functionality:

    • Uses React Router’s Link for navigation to the exercise detail page.
    • Displays the exercise image, body part, target muscle, and name.
    • Styled using Material-UI components for buttons and text.
JavaScript Logic
  • Routing:

    • Implemented using react-router-dom to handle navigation between different pages, such as the home page and exercise detail pages.
  • State Management:

    • Managed using React’s state and props. For example, BodyPart updates the selected body part state and passes it down to other components.
  • Event Handling:

    • Includes event handlers for user interactions, such as clicking on a body part card to filter exercises and navigating to exercise details.
  • Responsive Design:

    • Achieved through custom CSS and Material-UI’s responsive design features, ensuring the app works well on various screen sizes.
Purpose of Functions
  • index.js:
    • Initializes the app, renders the root component, and sets up routing.
  • App.js:
    • Configures the main layout and routes, providing a consistent structure for the application.
  • BodyPart:
    • Allows users to filter exercises by body part, enhancing user interactivity and customization.
  • Detail:
    • Displays comprehensive information about a selected exercise, including visuals and detailed descriptions.
  • ExerciseCard:
    • Presents individual exercises in a user-friendly format and facilitates navigation to detailed views.

Source Code :

Output :

output
More HTML CSS JS Projects
Get Huge Discounts

Find More Projects

Drawing Ganesha Using Python Turtle Graphics[Drawing Ganapati Using Python] Introduction In this blog post, we will learn how to draw Lord Ganesha …

Contact Management System in Python with a Graphical User Interface (GUI) Introduction: The Contact Management System is a Python-based application designed to …

KBC Game using Python with Source Code Introduction : Welcome to this blog post on building a “Kaun Banega Crorepati” (KBC) game …

Basic Logging System in C++ With Source Code Introduction : It is one of the most important practices in software development. Logging …

Snake Game Using C++ With Source Code Introduction : The Snake Game is one of the most well-known arcade games, having its …

C++ Hotel Management System With Source Code Introduction : It is very important to manage the hotels effectively to avail better customer …

All Coding Handwritten Notes

Browse Handwritten Notes