index.vue 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <template>
  2. <div>
  3. <Header />
  4. <Banner />
  5. <Features />
  6. <!-- <Video /> -->
  7. <CallToAction />
  8. <CallToActionTwo />
  9. <CallToActionThree />
  10. <!-- <Pricing /> -->
  11. <FeaturesTwo />
  12. <!-- <Testimonial /> -->
  13. <Counter />
  14. <Brands />
  15. <Screenshots />
  16. <!-- <Faq /> -->
  17. <BlogHome />
  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>