{"version":3,"file":"component---src-pages-index-js-44a1c5a0802724a07c1b.js","mappings":"6KAEe,SAASA,EAAeC,GACrC,IAAMC,EAAQD,EAAME,WAAa,iBAMjC,OACI,uBAAKC,UAAU,kBAAkBC,MANvB,IAOR,uBAAKD,UAAU,aACb,sBAAIA,UAAU,oBAAoBF,O,mGC6C5C,EA9CY,WAAO,IAAD,IACVI,GAAOC,EAAAA,EAAAA,gBAAe,cAiBtBC,EAAM,UAAGF,EAAKG,KAAKC,oBAAb,aAAG,EAAwBF,OACjCG,EAAM,UAAGL,EAAKG,KAAKC,oBAAb,aAAG,EAAwBC,OAEvC,OACE,uBAAKP,UAAU,OACb,gBAAC,EAAAQ,EAAD,CACER,UAAU,aACVS,OAAO,QACPC,QAAS,CAAC,OAAQ,OAAQ,QAC1BC,IAAI,4BACJC,MAAO,GACPC,OAAQ,GACRC,QAAS,GACTC,IAAI,kBARN,uBAUCX,MAAAA,OAAA,EAAAA,EAAQY,OACP,uCACa,8BAASZ,EAAOY,MAD7B,KAC6CZ,MAAAA,OAAA,EAAAA,EAAQa,UAAW,KADhE,IAGE,qBAAGC,KAAI,yBAAyBX,MAAAA,OAAA,EAAAA,EAAQY,UAAR,KAAhC,wC,iCCwPV,EA/RkB,SAAC,GAAsB,IAAD,EAApBjB,EAAoB,EAApBA,KAAMkB,EAAc,EAAdA,SAClBC,GAAY,UAAAnB,EAAKG,KAAKC,oBAAV,eAAwBR,QAAxB,QAGlB,OAAqB,IAFPI,EAAKoB,kBAAkBC,MAE3BC,OAEJ,gBAAC,IAAD,CAAQJ,SAAUA,EAAUtB,MAAOuB,GACjC,gBAAC,IAAD,CAAKvB,MAAM,cACX,gBAAC,EAAD,MACA,kDAQJ,gBAAC,IAAD,CAAQsB,SAAUA,EAAUtB,MAAOuB,GACjC,gBAAC,IAAD,CAAKvB,MAAM,cACX,gBAACF,EAAA,EAAD,CAAgBG,UAAU,sCAC1B,uBAAKE,MAAO,CACVwB,UAAW,SACXC,SAAU,QACVC,OAAQ,cAER,uDACA,+FAGA,yEAGA,0BAAI,gBAAC,EAAAC,KAAD,CAAMC,GAAG,qDAAT,gDACJ,0BAAI,gBAAC,EAAAD,KAAD,CAAMC,GAAG,0DAAT,oCACJ,0BAAI,gBAAC,EAAAD,KAAD,CAAMC,GAAG,gCAAT,mCACJ,0BAAI,gBAAC,EAAAD,KAAD,CAAMC,GAAG,+BAAT,8BACJ,0BAAI,gBAAC,EAAAD,KAAD,CAAMC,GAAG,2BAAT,qCACJ,0BAAI,gBAAC,EAAAD,KAAD,CAAMC,GAAG,6BAAT,6BACJ,0BAAI,gBAAC,EAAAD,KAAD,CAAMC,GAAG,oCAAT,6CACJ,0BAAI,gBAAC,EAAAD,KAAD,CAAMC,GAAG,uCAAT,sCACJ,0BAAI,gBAAC,EAAAD,KAAD,CAAMC,GAAG,+CAAT,2DACJ,0BAAI,gBAAC,EAAAD,KAAD,CAAMC,GAAG,4CAAT,yCACJ,0BAAI,gBAAC,EAAAD,KAAD,CAAMC,GAAG,kCAAT,0EACJ,0BAAI,gBAAC,EAAAD,KAAD,CAAMC,GAAG,4CAAT,2CACJ,0BAAI,gBAAC,EAAAD,KAAD,CAAMC,GAAG,gCAAT,+BACJ,0BAAI,gBAAC,EAAAD,KAAD,CAAMC,GAAG,uCAAT,sCACJ,0BAAI,gBAAC,EAAAD,KAAD,CAAMC,GAAG,qCAAT,2CACJ,0BAAI,gBAAC,EAAAD,KAAD,CAAMC,GAAG,uCAAT,oDACJ,0BAAI,gBAAC,EAAAD,KAAD,CAAMC,GAAG,8CAAT,6CACJ,0BAAI,gBAAC,EAAAD,KAAD,CAAMC,GAAG,yCAAT,0D","sources":["webpack://gatsby-starter-blog/./src/components/HeroBreadcrumb.jsx","webpack://gatsby-starter-blog/./src/components/bio.js","webpack://gatsby-starter-blog/./src/pages/index.js"],"sourcesContent":["import React from 'react';\n\nexport default function HeroBreadcrumb(props) {\n const title = props.pageTitle || \"View blog post\"\n const style = {\n // backgroundColor: \"black\",\n // background: \"url(/edgar-chaparro-sHfo3WOgGTU-unsplash.jpg)\",\n }\n\n return (\n
\n
\n

{title}

\n {/* */}\n
\n
\n )\n}\n","/**\n * Bio component that queries for data\n * with Gatsby's useStaticQuery component\n *\n * See: https://www.gatsbyjs.com/docs/use-static-query/\n */\n\nimport * as React from \"react\"\nimport { useStaticQuery, graphql } from \"gatsby\"\nimport { StaticImage } from \"gatsby-plugin-image\"\n\nconst Bio = () => {\n const data = useStaticQuery(graphql`\n query BioQuery {\n site {\n siteMetadata {\n author {\n name\n summary\n }\n social {\n twitter\n }\n }\n }\n }\n `)\n\n // Set these values by editing \"siteMetadata\" in gatsby-config.js\n const author = data.site.siteMetadata?.author\n const social = data.site.siteMetadata?.social\n\n return (\n
\n \n {author?.name && (\n

\n Written by {author.name} {author?.summary || null}\n {` `}\n \n You should follow them on Twitter\n \n

\n )}\n
\n )\n}\n\nexport default Bio\n","import * as React from 'react';\nimport {graphql, Link} from 'gatsby';\n\nimport Bio from '../components/bio';\nimport Layout from '../components/layout';\nimport Seo from '../components/seo';\nimport HeroSection from '../components/HeroSection';\nimport HeroBreadcrumb from '../components/HeroBreadcrumb';\n\nconst BlogIndex = ({data, location}) => {\n const siteTitle = data.site.siteMetadata?.title || `Title`;\n const posts = data.allMarkdownRemark.nodes;\n\n if (posts.length === 0) {\n return (\n \n \n \n

\n No blog posts found.\n

\n
\n );\n }\n\n return (\n \n \n \n
\n

Fitness planner - welcome

\n

Coming soon - interactive React scheduler for personal\n trainers.

\n\n

Here are some of our most popular blog posts

\n\n\n
  • Best shoulder gym workout exercise routines
  • \n
  • 3 times a week workout routine
  • \n
  • Complete 7 day workout routine
  • \n
  • Best back workout routine
  • \n
  • How to start an exercise routine
  • \n
  • Best leg workout routine
  • \n
  • Best full body 30 minute workout routine
  • \n
  • Workout routine for gym beginners
  • \n
  • Resistance band training exercises and workout routine
  • \n
  • 30 Minute bodyweight workout at home
  • \n
  • 5 Day a week workout routine for muscle growth (5 day split workout)
  • \n
  • Best abs workout routine and exercises
  • \n
  • Get in shape without a gym
  • \n
  • How to build your workout routine
  • \n
  • Best abs workout routine and exercises
  • \n
  • Strength training workout routine for beginners
  • \n
  • Upper body workout routine for beginners
  • \n
  • Best warm up exercises to do in your workout plan
  • \n
    \n
    \n );\n\n return (\n \n \n\n {/* Hero-section */}\n\n \n\n {/* /Hero-section */}\n {/* Feature-Area */}\n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n
    \n

    Best gym equipment to work out with

    \n

    Find the best type of gym equipment to maximise your work\n out results

    \n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n
    \n

    Full workout regime

    \n

    Find the best workout regimes for you - for all aims and\n goals

    \n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n
    \n

    And don't forget food

    \n

    Diet is the most important part - find out what diet plan\n you should be on

    \n
    \n
    \n
    \n
    \n
    \n
    \n {/* /Feature-Area */}\n {/* About Area */}\n {/*
    \n
    \n
    \n
    \n
    \n
    \n About Us\n

    We Are Ready To Making You Different From Others\n

    \n
    \n

    There are many variations of passages of Lorem Ipsum available, but\n the majority have suffered alteration in some form, by injected humour, or randomised\n words which don't look even slightly believable. If you are going to use a passage of\n orem psum you need to be sure.All the Lorem Ipsum generators on the Internet tend to\n repeat predefined chunks.

    \n
    \n
      \n
    • \n
      \n
      \n

      Qualified Instructor

      \n

      Take a look at our round up of the best shows.

      \n
      \n
    • \n
    • \n
      \n
      \n

      Get Fitness Training

      \n

      It has survived not only five centuries.

      \n
      \n
    • \n
    \n
    \n Discover More \n
    \n
    \n
    \n
    \n
    \n \"\"\n
    \n
    \n
    \n
    \n
    \n
    */}\n {/* /About Area */}\n {/* Class-Timetable */}\n\n\n {/* CTA-Area */}\n {/*
    \n
    \n
    \n

    Join ourMonthly Membership

    \n
    We Are More Effective To Making Different Yourself From Others
    \n Join Us Now \n
    \n
    \n
    */}\n {/* /CTA-Area */}\n\n\n {/* /Testimonial-Area */}\n {/* Blog-area */}\n
    \n
    \n
    \n
    \n
    \n Our Blog\n

    Latest blog posts

    \n
    \n

    \n Check out the latest gym workouts below\n

    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n \"Thumb\"/\n
    \n
    \n
    \n
      \n
    • By Alicia\n Davis
    • \n
    • August 21,\n 2019
    • \n
    \n
    \n

    \n The best workout routines for large\n arms\n

    \n Read More \n
    \n
    \n
    \n
    \n
    \n
    \n \"Thumb\"/\n
    \n
    \n
    \n
      \n
    • By Alicia\n Davis
    • \n
    • August 21,\n 2021
    • \n
    \n
    \n

    \n The type of push up you need to start\n doing\n

    \n Read More \n
    \n
    \n
    \n
    \n
    \n
    \n \"Thumb\"/\n
    \n
    \n
    \n
      \n
    • By Alicia\n Davis
    • \n
    • March 12,\n 2020
    • \n
    \n
    \n

    \n Workouts at home\n

    \n Read More \n
    \n
    \n
    \n
    \n
    \n
    \n {/* /Blog-area */}\n {/* Partner-Area */}\n
    \n
    \n \n \"thumb\"/\n \"thumb\"/\n \"thumb\"/\n \"thumb\"/\n \"thumb\"/\n \"thumb\"/\n \"thumb\"/\n
    \n
    \n
    \n {/* /Partner-Area */}\n\n
    \n );\n};\n\nexport default BlogIndex;\n\nexport const pageQuery = graphql`\n query {\n site {\n siteMetadata {\n title\n }\n }\n allMarkdownRemark(sort: { fields: [frontmatter___date], order: DESC }) {\n nodes {\n excerpt\n fields {\n slug\n }\n frontmatter {\n date(formatString: \"MMMM DD, YYYY\")\n title\n description\n }\n }\n }\n }\n`;\n"],"names":["HeroBreadcrumb","props","title","pageTitle","className","style","data","useStaticQuery","author","site","siteMetadata","social","S","layout","formats","src","width","height","quality","alt","name","summary","href","twitter","location","siteTitle","allMarkdownRemark","nodes","length","textAlign","maxWidth","margin","Link","to"],"sourceRoot":""}