├── .babelrc ├── .editorconfig ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── assets ├── README.md ├── css │ └── tailwind.css └── img │ ├── connected-world.svg │ ├── hero-wave.svg │ ├── hero.png │ ├── travel-booking.svg │ └── wave-top.svg ├── components ├── CallToAction.vue ├── CallToActionContent.vue ├── FeatureLeft.vue ├── FeatureRight.vue ├── Features.vue ├── Hero.vue ├── HeroContent.vue ├── Logo.vue ├── Price.vue ├── PriceHighlighted.vue ├── Prices.vue ├── TeaserColumn.vue ├── Teasers.vue ├── TheFooter.vue └── TheHeader.vue ├── jest.config.js ├── jsconfig.json ├── layouts ├── README.md ├── dashboard.vue └── default.vue ├── mixins └── price.js ├── nuxt.config.js ├── package.json ├── pages └── index.vue ├── static └── favicon.ico ├── store └── index.js ├── tailwind.config.js ├── test ├── CallToAction.spec.js ├── CallToActionContent.spec.js ├── FeatureLeft.spec.js ├── FeatureRight.spec.js ├── Features.spec.js ├── Hero.spec.js ├── HeroContent.spec.js ├── Logo.spec.js ├── Price.spec.js ├── PriceHighlighted.spec.js ├── Prices.spec.js ├── TeaserColumn.spec.js ├── Teasers.spec.js ├── TheFooter.spec.js ├── TheHeader.spec.js ├── __snapshots__ │ ├── CallToAction.spec.js.snap │ ├── CallToActionContent.spec.js.snap │ ├── FeatureLeft.spec.js.snap │ ├── FeatureRight.spec.js.snap │ ├── Features.spec.js.snap │ ├── Hero.spec.js.snap │ ├── HeroContent.spec.js.snap │ ├── Logo.spec.js.snap │ ├── Price.spec.js.snap │ ├── PriceHighlighted.spec.js.snap │ ├── Prices.spec.js.snap │ ├── TeaserColumn.spec.js.snap │ ├── Teasers.spec.js.snap │ ├── TheFooter.spec.js.snap │ ├── TheHeader.spec.js.snap │ └── index.spec.js.snap └── index.spec.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/README.md -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/assets/README.md -------------------------------------------------------------------------------- /assets/css/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/assets/css/tailwind.css -------------------------------------------------------------------------------- /assets/img/connected-world.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/assets/img/connected-world.svg -------------------------------------------------------------------------------- /assets/img/hero-wave.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/assets/img/hero-wave.svg -------------------------------------------------------------------------------- /assets/img/hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/assets/img/hero.png -------------------------------------------------------------------------------- /assets/img/travel-booking.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/assets/img/travel-booking.svg -------------------------------------------------------------------------------- /assets/img/wave-top.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/assets/img/wave-top.svg -------------------------------------------------------------------------------- /components/CallToAction.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/components/CallToAction.vue -------------------------------------------------------------------------------- /components/CallToActionContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/components/CallToActionContent.vue -------------------------------------------------------------------------------- /components/FeatureLeft.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/components/FeatureLeft.vue -------------------------------------------------------------------------------- /components/FeatureRight.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/components/FeatureRight.vue -------------------------------------------------------------------------------- /components/Features.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/components/Features.vue -------------------------------------------------------------------------------- /components/Hero.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/components/Hero.vue -------------------------------------------------------------------------------- /components/HeroContent.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/components/HeroContent.vue -------------------------------------------------------------------------------- /components/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/components/Logo.vue -------------------------------------------------------------------------------- /components/Price.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/components/Price.vue -------------------------------------------------------------------------------- /components/PriceHighlighted.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/components/PriceHighlighted.vue -------------------------------------------------------------------------------- /components/Prices.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/components/Prices.vue -------------------------------------------------------------------------------- /components/TeaserColumn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/components/TeaserColumn.vue -------------------------------------------------------------------------------- /components/Teasers.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/components/Teasers.vue -------------------------------------------------------------------------------- /components/TheFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/components/TheFooter.vue -------------------------------------------------------------------------------- /components/TheHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/components/TheHeader.vue -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/jest.config.js -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/jsconfig.json -------------------------------------------------------------------------------- /layouts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/layouts/README.md -------------------------------------------------------------------------------- /layouts/dashboard.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/layouts/dashboard.vue -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /mixins/price.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/mixins/price.js -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/package.json -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/pages/index.vue -------------------------------------------------------------------------------- /static/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/static/favicon.ico -------------------------------------------------------------------------------- /store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/store/index.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /test/CallToAction.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/CallToAction.spec.js -------------------------------------------------------------------------------- /test/CallToActionContent.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/CallToActionContent.spec.js -------------------------------------------------------------------------------- /test/FeatureLeft.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/FeatureLeft.spec.js -------------------------------------------------------------------------------- /test/FeatureRight.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/FeatureRight.spec.js -------------------------------------------------------------------------------- /test/Features.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/Features.spec.js -------------------------------------------------------------------------------- /test/Hero.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/Hero.spec.js -------------------------------------------------------------------------------- /test/HeroContent.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/HeroContent.spec.js -------------------------------------------------------------------------------- /test/Logo.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/Logo.spec.js -------------------------------------------------------------------------------- /test/Price.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/Price.spec.js -------------------------------------------------------------------------------- /test/PriceHighlighted.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/PriceHighlighted.spec.js -------------------------------------------------------------------------------- /test/Prices.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/Prices.spec.js -------------------------------------------------------------------------------- /test/TeaserColumn.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/TeaserColumn.spec.js -------------------------------------------------------------------------------- /test/Teasers.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/Teasers.spec.js -------------------------------------------------------------------------------- /test/TheFooter.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/TheFooter.spec.js -------------------------------------------------------------------------------- /test/TheHeader.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/TheHeader.spec.js -------------------------------------------------------------------------------- /test/__snapshots__/CallToAction.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/__snapshots__/CallToAction.spec.js.snap -------------------------------------------------------------------------------- /test/__snapshots__/CallToActionContent.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/__snapshots__/CallToActionContent.spec.js.snap -------------------------------------------------------------------------------- /test/__snapshots__/FeatureLeft.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/__snapshots__/FeatureLeft.spec.js.snap -------------------------------------------------------------------------------- /test/__snapshots__/FeatureRight.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/__snapshots__/FeatureRight.spec.js.snap -------------------------------------------------------------------------------- /test/__snapshots__/Features.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/__snapshots__/Features.spec.js.snap -------------------------------------------------------------------------------- /test/__snapshots__/Hero.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/__snapshots__/Hero.spec.js.snap -------------------------------------------------------------------------------- /test/__snapshots__/HeroContent.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/__snapshots__/HeroContent.spec.js.snap -------------------------------------------------------------------------------- /test/__snapshots__/Logo.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/__snapshots__/Logo.spec.js.snap -------------------------------------------------------------------------------- /test/__snapshots__/Price.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/__snapshots__/Price.spec.js.snap -------------------------------------------------------------------------------- /test/__snapshots__/PriceHighlighted.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/__snapshots__/PriceHighlighted.spec.js.snap -------------------------------------------------------------------------------- /test/__snapshots__/Prices.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/__snapshots__/Prices.spec.js.snap -------------------------------------------------------------------------------- /test/__snapshots__/TeaserColumn.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/__snapshots__/TeaserColumn.spec.js.snap -------------------------------------------------------------------------------- /test/__snapshots__/Teasers.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/__snapshots__/Teasers.spec.js.snap -------------------------------------------------------------------------------- /test/__snapshots__/TheFooter.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/__snapshots__/TheFooter.spec.js.snap -------------------------------------------------------------------------------- /test/__snapshots__/TheHeader.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/__snapshots__/TheHeader.spec.js.snap -------------------------------------------------------------------------------- /test/__snapshots__/index.spec.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/__snapshots__/index.spec.js.snap -------------------------------------------------------------------------------- /test/index.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/test/index.spec.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vannsl/tailwind-landing-page-nuxt/HEAD/yarn.lock --------------------------------------------------------------------------------