index.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <div>
  3. <Header />
  4. <!-- <Banner /> -->
  5. <Features />
  6. <CallToAction />
  7. <CallToActionTwo />
  8. <CallToActionThree />
  9. <!-- <Pricing /> -->
  10. <FeaturesTwo />
  11. <!-- <Testimonial /> -->
  12. <Counter />
  13. <Brands />
  14. <BlogHome />
  15. <Screenshots />
  16. <!-- <Faq /> -->
  17. <!-- <Subscribe /> -->
  18. <Footer />
  19. </div>
  20. </template>
  21. <script>
  22. import Header from "~/components/Header.vue";
  23. import Banner from "~/components/Banner.vue";
  24. import Features from "~/components/Features.vue";
  25. import FeaturesTwo from "~/components/FeaturesTwo.vue";
  26. import Video from "~/components/Video.vue";
  27. import CallToAction from "~/components/CallToAction.vue";
  28. import CallToActionTwo from "~/components/CallToActionTwo.vue";
  29. import CallToActionThree from "~/components/CallToActionThree.vue";
  30. import Pricing from "~/components/Pricing.vue";
  31. import Testimonial from "~/components/Testimonial.vue";
  32. import Brands from "~/components/Brands.vue";
  33. import Counter from "~/components/Counter.vue";
  34. import Screenshots from "~/components/Screenshots.vue";
  35. import Faq from "~/components/Faq.vue";
  36. import BlogHome from "~/components/BlogHome.vue";
  37. import Subscribe from "~/components/Subscribe.vue";
  38. import Footer from "~/components/Footer.vue";
  39. export default {
  40. components: {
  41. Header,
  42. Banner,
  43. Features,
  44. FeaturesTwo,
  45. Video,
  46. CallToAction,
  47. CallToActionTwo,
  48. CallToActionThree,
  49. Pricing,
  50. Testimonial,
  51. Brands,
  52. Counter,
  53. Screenshots,
  54. Faq,
  55. BlogHome,
  56. Subscribe,
  57. Footer,
  58. }
  59. }
  60. </script>