index.vue 1.6 KB

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