Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ananyag309 authored Oct 29, 2024
1 parent 30375ae commit d1f92b0
Show file tree
Hide file tree
Showing 22 changed files with 6,256 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
# Personalized Workout Recommendation system

## Table of Contents

- [Introduction](#introduction)

- [Features](#features)
- [Getting Started](#getting-started)
- [Prerequisites](#prerequisites)
- [Installation](#installation)
- [Technologies Used](#technologies-used)

## Features

- **Personalized Workout Plans**: Create customized workout plans tailored to individual fitness goals, preferences, and available time.

- **AI-Generated Recommendations**: Utilize AI-powered algorithms to receive workout recommendations that adapt and evolve as you progress.

- **Responsive Design**: Enjoy a seamless experience across devices, including desktops, tablets, and mobile phones.

- **Integration with OpenAI**: Access the OpenAI API to enhance workout recommendations and guidance.

## Getting Started

Follow these steps to set up and run the AI-Powered Workout Application locally.

### Prerequisites

Ensure you have the following prerequisites installed on your system:

- [Node.js](https://nodejs.org/)
- [npm](https://www.npmjs.com/) or [Yarn](https://yarnpkg.com/)

### Installation

1. Clone the repository:

```bash
git clone https://github.com/manishtmtmt/ai-powered-workout-plan.git
```

2. Navigate to the project directory:

```bash
cd ai-powered-workout-plan
```

3. Install dependencies:

```bash
npm install
```

4. Start the server:

```bash
npm run dev
```

## Technologies Used

The AI-Powered Workout Application is built with the following technologies:

- React
- Redux Toolkit
- React Router DOM
- OpenAI API
- Material UI
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Personalised Workout Recommendation System </title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
Loading

0 comments on commit d1f92b0

Please sign in to comment.