├── .editorconfig ├── .eslintrc.js ├── .github └── workflows │ └── deploy.yml ├── .gitignore ├── .prettierrc ├── CODE_OF_CONDUCT.md ├── LICENSE ├── README.md ├── app.html ├── assets ├── README.md └── variables.scss ├── components ├── Logo.vue ├── Notification.vue ├── README.md ├── footerTop.vue ├── sections │ ├── Brands.vue │ ├── CalloutBlock.vue │ ├── Features.vue │ ├── Hero.vue │ ├── HeroAlt.vue │ ├── Intro.vue │ ├── Pricing.vue │ ├── Team.vue │ ├── Testimonials.vue │ ├── Timeline.vue │ ├── contactForm.vue │ └── footerContactForm.vue ├── siteFooter.vue └── siteHeader.vue ├── jsconfig.json ├── layouts ├── default.vue ├── error-layout.vue └── error.vue ├── middleware └── README.md ├── nuxt.config.js ├── package.json ├── pages ├── about.vue ├── blog.vue ├── contact.vue ├── gallery.vue ├── index.vue ├── pricing.vue └── services.vue ├── plugins └── README.md ├── static ├── 404.svg ├── brands │ ├── logo-1.svg │ ├── logo-10.svg │ ├── logo-11.svg │ ├── logo-12.svg │ ├── logo-13.svg │ ├── logo-14.svg │ ├── logo-15.svg │ ├── logo-16.svg │ ├── logo-17.svg │ ├── logo-18.svg │ ├── logo-19.svg │ ├── logo-2.svg │ ├── logo-20.svg │ ├── logo-21.svg │ ├── logo-22.svg │ ├── logo-23.svg │ ├── logo-25.svg │ ├── logo-26.svg │ ├── logo-3.svg │ ├── logo-4.svg │ ├── logo-5.svg │ ├── logo-6.svg │ ├── logo-7.svg │ ├── logo-8.svg │ └── logo-9.svg ├── dark.png ├── favicon │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ ├── apple-touch-icon.png │ ├── favicon-16x16.png │ ├── favicon-32x32.png │ └── favicon.ico ├── kaylah-matthews-6e5hgWV2DAo-unsplash.jpg ├── modevue.png ├── modevue.svg ├── pexels-andrea-piacquadio-3795295.jpg ├── pexels-andrea-piacquadio-3830745.jpg ├── pexels-andrea-piacquadio-3884440.jpg ├── pexels-canva-studio-3277806.jpg ├── pexels-ekaterina-bolovtsova-4048767.jpg ├── pexels-moose-photos-1036641.jpg ├── pexels-peter-olexa-4012966.jpg ├── pexels-rfstudio-3810792.jpg ├── pexels-thirdman-5961072.jpg ├── site.webmanifest └── team │ ├── person-1.jpg │ ├── person-10.jpg │ ├── person-2.jpg │ ├── person-3.jpg │ ├── person-4.jpg │ ├── person-5.jpg │ ├── person-6.jpg │ ├── person-7.jpg │ ├── person-8.jpg │ └── person-9.jpg └── store └── README.md /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/.prettierrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/README.md -------------------------------------------------------------------------------- /app.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/app.html -------------------------------------------------------------------------------- /assets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/assets/README.md -------------------------------------------------------------------------------- /assets/variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/assets/variables.scss -------------------------------------------------------------------------------- /components/Logo.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/components/Logo.vue -------------------------------------------------------------------------------- /components/Notification.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/components/Notification.vue -------------------------------------------------------------------------------- /components/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/components/README.md -------------------------------------------------------------------------------- /components/footerTop.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/components/footerTop.vue -------------------------------------------------------------------------------- /components/sections/Brands.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/components/sections/Brands.vue -------------------------------------------------------------------------------- /components/sections/CalloutBlock.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/components/sections/CalloutBlock.vue -------------------------------------------------------------------------------- /components/sections/Features.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/components/sections/Features.vue -------------------------------------------------------------------------------- /components/sections/Hero.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/components/sections/Hero.vue -------------------------------------------------------------------------------- /components/sections/HeroAlt.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/components/sections/HeroAlt.vue -------------------------------------------------------------------------------- /components/sections/Intro.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/components/sections/Intro.vue -------------------------------------------------------------------------------- /components/sections/Pricing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/components/sections/Pricing.vue -------------------------------------------------------------------------------- /components/sections/Team.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/components/sections/Team.vue -------------------------------------------------------------------------------- /components/sections/Testimonials.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/components/sections/Testimonials.vue -------------------------------------------------------------------------------- /components/sections/Timeline.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/components/sections/Timeline.vue -------------------------------------------------------------------------------- /components/sections/contactForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/components/sections/contactForm.vue -------------------------------------------------------------------------------- /components/sections/footerContactForm.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/components/sections/footerContactForm.vue -------------------------------------------------------------------------------- /components/siteFooter.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/components/siteFooter.vue -------------------------------------------------------------------------------- /components/siteHeader.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/components/siteHeader.vue -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/jsconfig.json -------------------------------------------------------------------------------- /layouts/default.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/layouts/default.vue -------------------------------------------------------------------------------- /layouts/error-layout.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/layouts/error-layout.vue -------------------------------------------------------------------------------- /layouts/error.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/layouts/error.vue -------------------------------------------------------------------------------- /middleware/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/middleware/README.md -------------------------------------------------------------------------------- /nuxt.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/nuxt.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/package.json -------------------------------------------------------------------------------- /pages/about.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/pages/about.vue -------------------------------------------------------------------------------- /pages/blog.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/pages/blog.vue -------------------------------------------------------------------------------- /pages/contact.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/pages/contact.vue -------------------------------------------------------------------------------- /pages/gallery.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/pages/gallery.vue -------------------------------------------------------------------------------- /pages/index.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/pages/index.vue -------------------------------------------------------------------------------- /pages/pricing.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/pages/pricing.vue -------------------------------------------------------------------------------- /pages/services.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/pages/services.vue -------------------------------------------------------------------------------- /plugins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/plugins/README.md -------------------------------------------------------------------------------- /static/404.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/404.svg -------------------------------------------------------------------------------- /static/brands/logo-1.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-1.svg -------------------------------------------------------------------------------- /static/brands/logo-10.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-10.svg -------------------------------------------------------------------------------- /static/brands/logo-11.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-11.svg -------------------------------------------------------------------------------- /static/brands/logo-12.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-12.svg -------------------------------------------------------------------------------- /static/brands/logo-13.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-13.svg -------------------------------------------------------------------------------- /static/brands/logo-14.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-14.svg -------------------------------------------------------------------------------- /static/brands/logo-15.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-15.svg -------------------------------------------------------------------------------- /static/brands/logo-16.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-16.svg -------------------------------------------------------------------------------- /static/brands/logo-17.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-17.svg -------------------------------------------------------------------------------- /static/brands/logo-18.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-18.svg -------------------------------------------------------------------------------- /static/brands/logo-19.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-19.svg -------------------------------------------------------------------------------- /static/brands/logo-2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-2.svg -------------------------------------------------------------------------------- /static/brands/logo-20.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-20.svg -------------------------------------------------------------------------------- /static/brands/logo-21.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-21.svg -------------------------------------------------------------------------------- /static/brands/logo-22.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-22.svg -------------------------------------------------------------------------------- /static/brands/logo-23.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-23.svg -------------------------------------------------------------------------------- /static/brands/logo-25.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-25.svg -------------------------------------------------------------------------------- /static/brands/logo-26.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-26.svg -------------------------------------------------------------------------------- /static/brands/logo-3.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-3.svg -------------------------------------------------------------------------------- /static/brands/logo-4.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-4.svg -------------------------------------------------------------------------------- /static/brands/logo-5.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-5.svg -------------------------------------------------------------------------------- /static/brands/logo-6.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-6.svg -------------------------------------------------------------------------------- /static/brands/logo-7.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-7.svg -------------------------------------------------------------------------------- /static/brands/logo-8.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-8.svg -------------------------------------------------------------------------------- /static/brands/logo-9.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/brands/logo-9.svg -------------------------------------------------------------------------------- /static/dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/dark.png -------------------------------------------------------------------------------- /static/favicon/android-chrome-192x192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/favicon/android-chrome-192x192.png -------------------------------------------------------------------------------- /static/favicon/android-chrome-512x512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/favicon/android-chrome-512x512.png -------------------------------------------------------------------------------- /static/favicon/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/favicon/apple-touch-icon.png -------------------------------------------------------------------------------- /static/favicon/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/favicon/favicon-16x16.png -------------------------------------------------------------------------------- /static/favicon/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/favicon/favicon-32x32.png -------------------------------------------------------------------------------- /static/favicon/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/favicon/favicon.ico -------------------------------------------------------------------------------- /static/kaylah-matthews-6e5hgWV2DAo-unsplash.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/kaylah-matthews-6e5hgWV2DAo-unsplash.jpg -------------------------------------------------------------------------------- /static/modevue.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/modevue.png -------------------------------------------------------------------------------- /static/modevue.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/modevue.svg -------------------------------------------------------------------------------- /static/pexels-andrea-piacquadio-3795295.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/pexels-andrea-piacquadio-3795295.jpg -------------------------------------------------------------------------------- /static/pexels-andrea-piacquadio-3830745.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/pexels-andrea-piacquadio-3830745.jpg -------------------------------------------------------------------------------- /static/pexels-andrea-piacquadio-3884440.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/pexels-andrea-piacquadio-3884440.jpg -------------------------------------------------------------------------------- /static/pexels-canva-studio-3277806.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/pexels-canva-studio-3277806.jpg -------------------------------------------------------------------------------- /static/pexels-ekaterina-bolovtsova-4048767.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/pexels-ekaterina-bolovtsova-4048767.jpg -------------------------------------------------------------------------------- /static/pexels-moose-photos-1036641.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/pexels-moose-photos-1036641.jpg -------------------------------------------------------------------------------- /static/pexels-peter-olexa-4012966.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/pexels-peter-olexa-4012966.jpg -------------------------------------------------------------------------------- /static/pexels-rfstudio-3810792.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/pexels-rfstudio-3810792.jpg -------------------------------------------------------------------------------- /static/pexels-thirdman-5961072.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/pexels-thirdman-5961072.jpg -------------------------------------------------------------------------------- /static/site.webmanifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/site.webmanifest -------------------------------------------------------------------------------- /static/team/person-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/team/person-1.jpg -------------------------------------------------------------------------------- /static/team/person-10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/team/person-10.jpg -------------------------------------------------------------------------------- /static/team/person-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/team/person-2.jpg -------------------------------------------------------------------------------- /static/team/person-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/team/person-3.jpg -------------------------------------------------------------------------------- /static/team/person-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/team/person-4.jpg -------------------------------------------------------------------------------- /static/team/person-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/team/person-5.jpg -------------------------------------------------------------------------------- /static/team/person-6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/team/person-6.jpg -------------------------------------------------------------------------------- /static/team/person-7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/team/person-7.jpg -------------------------------------------------------------------------------- /static/team/person-8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/team/person-8.jpg -------------------------------------------------------------------------------- /static/team/person-9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/static/team/person-9.jpg -------------------------------------------------------------------------------- /store/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/staticdesigner/modevue/HEAD/store/README.md --------------------------------------------------------------------------------