├── .gitattributes ├── .gitignore ├── .npmrc ├── README.md ├── package.json ├── postcss.config.js ├── src ├── app.css ├── app.html ├── components │ ├── CTAs.svelte │ ├── Conversion.svelte │ ├── FAQs.svelte │ ├── Footer.svelte │ ├── Header.svelte │ ├── Hero.svelte │ ├── Product.svelte │ ├── ProductCard.svelte │ ├── ReviewCard.svelte │ ├── Reviews.svelte │ ├── SectionWrapper.svelte │ └── Stars.svelte ├── lib │ └── index.js ├── routes │ ├── +layout.svelte │ └── +page.svelte └── store │ └── index.js ├── static ├── assets │ ├── goal.png │ ├── selection.png │ └── training.png └── favicon.png ├── svelte.config.js ├── tailwind.config.js └── vite.config.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/app.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/src/app.css -------------------------------------------------------------------------------- /src/app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/src/app.html -------------------------------------------------------------------------------- /src/components/CTAs.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/src/components/CTAs.svelte -------------------------------------------------------------------------------- /src/components/Conversion.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/src/components/Conversion.svelte -------------------------------------------------------------------------------- /src/components/FAQs.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/src/components/FAQs.svelte -------------------------------------------------------------------------------- /src/components/Footer.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/src/components/Footer.svelte -------------------------------------------------------------------------------- /src/components/Header.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/src/components/Header.svelte -------------------------------------------------------------------------------- /src/components/Hero.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/src/components/Hero.svelte -------------------------------------------------------------------------------- /src/components/Product.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/src/components/Product.svelte -------------------------------------------------------------------------------- /src/components/ProductCard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/src/components/ProductCard.svelte -------------------------------------------------------------------------------- /src/components/ReviewCard.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/src/components/ReviewCard.svelte -------------------------------------------------------------------------------- /src/components/Reviews.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/src/components/Reviews.svelte -------------------------------------------------------------------------------- /src/components/SectionWrapper.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/src/components/SectionWrapper.svelte -------------------------------------------------------------------------------- /src/components/Stars.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/src/components/Stars.svelte -------------------------------------------------------------------------------- /src/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/src/lib/index.js -------------------------------------------------------------------------------- /src/routes/+layout.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/src/routes/+layout.svelte -------------------------------------------------------------------------------- /src/routes/+page.svelte: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/src/routes/+page.svelte -------------------------------------------------------------------------------- /src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/src/store/index.js -------------------------------------------------------------------------------- /static/assets/goal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/static/assets/goal.png -------------------------------------------------------------------------------- /static/assets/selection.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/static/assets/selection.png -------------------------------------------------------------------------------- /static/assets/training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/static/assets/training.png -------------------------------------------------------------------------------- /static/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/static/favicon.png -------------------------------------------------------------------------------- /svelte.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/svelte.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamezmca/gym-app-landingpage/HEAD/vite.config.js --------------------------------------------------------------------------------