Skip to content

Commit

Permalink
Merge pull request #3 from WorkoutLogs/update
Browse files Browse the repository at this point in the history
Update
  • Loading branch information
ReddyyZ authored Dec 27, 2023
2 parents 46fc644 + 990bfcf commit e0a451e
Showing 1 changed file with 34 additions and 11 deletions.
45 changes: 34 additions & 11 deletions src/pages/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import Content from "../components/content";
import { StaticImage } from "gatsby-plugin-image";

const META_DESCRIPTION = "Get the best workout tracker android app for free";
const TITLE = 'WorkoutLogs - Gym Tracker';
const TITLE = 'WorkoutLogs - Gym Tracker App';
const IMAGE = 'https://workoutlogs.github.io/icon.png';

const IndexPage = () => {
Expand All @@ -23,7 +23,7 @@ const IndexPage = () => {
<div className="flex text-white p-4 flex-col md:flex-row" style={{backgroundColor: "#df2a27"}}>
<div className="flex-1 flex justify-center md:justify-end">
<div className="md:mr-8 flex flex-col">
<h1 className="text-6xl text-left w-64 font-bold">The<br/>Best<br/>Workout<br/>Tracker.</h1>
<h1 className="text-6xl text-left w-64 font-bold">The <br/>Best <br/>Workout <br/>Tracker.</h1>
<p className="text-xl mt-5" style={{maxWidth: 450}}>{description}</p>
<GooglePlayButton
url={GooglePlayUrl}
Expand All @@ -44,17 +44,40 @@ const IndexPage = () => {
/>
</div>
</div>
<div className="bg-white p-4">
<div className="bg-white p-4 px-7">
<h2 className="text-2xl text-center mb-4 font-medium">App Functionalities</h2>
<p className="text-center mb-4">A simple workout tracker, developed by gym rats, for gym rats!</p>
<ul className="list-disc list-inside self-center">
<li>Track your workouts, record weight, reps, and RPE</li>
<li>Track all your body measurements (bodyweight, bicep size, etc.)</li>
<li>Plate calculator</li>
<li>Powerlifting points calculator</li>
<li>RPE/1RM calculator</li>
<li>Timers</li>
</ul>
<div className='grid md:grid-cols-2'>
<div className="ml-auto mr-auto">
<ul className="list-disc list-inside m-4">
Workout History
<li>Record your sets, weight, reps and RPE</li>
<li>Use KG or LBS</li>
<li>Add custom exercises </li>
<li>Rest timer</li>
<li>Backup system</li>
<li>Simple design</li>
</ul>
<ul className="list-disc list-inside m-4">
Body Measurement
<li>Track all your body measurements (bodyweight, bicep size, etc.)</li>
<li>Check your progress with charts</li>
</ul>
</div>
<div className="ml-auto mr-auto">
<ul className="list-disc list-inside m-4">
Calculators
<li>Plate loading calculator</li>
<li>Calculate your powerlifting competition points (IPF, DOTS, WILKS)</li>
<li>Rating of Perceived Exertion (RPE) and 1RM calculator</li>
</ul>
<ul className="list-disc list-inside m-4">
Supported Languages
<li>English (US)</li>
<li>Portuguese (BR)</li>
</ul>
</div>
</div>
</div>
</Content>
<Footer
Expand Down

0 comments on commit e0a451e

Please sign in to comment.