├── .env ├── .gitignore ├── README.md ├── app.vue ├── assets └── images │ ├── header-bg.jpg │ ├── logo-white.svg │ ├── logo.svg │ ├── product-teaser.png │ ├── subscribe-bg.svg │ └── subscribe-pattern.png ├── components ├── Btn.vue ├── CartInfo.vue ├── Container.vue ├── FooterSection.vue ├── HeaderSection.vue ├── Heading.vue ├── InputField.vue ├── MobileMenu.vue ├── NavBar.vue ├── ProductImage.vue ├── ProductTeaser.vue ├── Subscribe.vue └── icons │ ├── cart.vue │ └── logo.vue ├── layouts └── default.vue ├── nuxt.config.ts ├── package.json ├── pages ├── contact.vue ├── index.vue ├── products │ └── [id].vue └── shop.vue ├── postcss.config.js ├── tailwind.config.js └── tsconfig.json /.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/.env -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/README.md -------------------------------------------------------------------------------- /app.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/app.vue -------------------------------------------------------------------------------- /assets/images/header-bg.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/assets/images/header-bg.jpg -------------------------------------------------------------------------------- /assets/images/logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/assets/images/logo-white.svg -------------------------------------------------------------------------------- /assets/images/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/assets/images/logo.svg -------------------------------------------------------------------------------- /assets/images/product-teaser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/assets/images/product-teaser.png -------------------------------------------------------------------------------- /assets/images/subscribe-bg.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/assets/images/subscribe-bg.svg -------------------------------------------------------------------------------- /assets/images/subscribe-pattern.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/assets/images/subscribe-pattern.png -------------------------------------------------------------------------------- /components/Btn.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/components/Btn.vue -------------------------------------------------------------------------------- /components/CartInfo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/components/CartInfo.vue -------------------------------------------------------------------------------- /components/Container.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/components/Container.vue -------------------------------------------------------------------------------- /components/FooterSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/components/FooterSection.vue -------------------------------------------------------------------------------- /components/HeaderSection.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/components/HeaderSection.vue -------------------------------------------------------------------------------- /components/Heading.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/components/Heading.vue -------------------------------------------------------------------------------- /components/InputField.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/components/InputField.vue -------------------------------------------------------------------------------- /components/MobileMenu.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/components/MobileMenu.vue -------------------------------------------------------------------------------- /components/NavBar.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/components/NavBar.vue -------------------------------------------------------------------------------- /components/ProductImage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/components/ProductImage.vue -------------------------------------------------------------------------------- /components/ProductTeaser.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/components/ProductTeaser.vue -------------------------------------------------------------------------------- /components/Subscribe.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/components/Subscribe.vue -------------------------------------------------------------------------------- /components/icons/cart.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/components/icons/cart.vue -------------------------------------------------------------------------------- /components/icons/logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/components/icons/logo.vue -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /nuxt.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/nuxt.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/package.json -------------------------------------------------------------------------------- /pages/contact.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/pages/contact.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pages/products/[id].vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/pages/products/[id].vue -------------------------------------------------------------------------------- /pages/shop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/pages/shop.vue -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/postcss.config.js -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pixelhop/pick-a-sick-wick-frontend/HEAD/tsconfig.json --------------------------------------------------------------------------------