index-2.vue 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <template>
  2. <div>
  3. <HeaderTwo />
  4. <BannerTwo />
  5. <Features />
  6. <Video />
  7. <CallToAction />
  8. <CallToActionTwo />
  9. <Pricing />
  10. <Testimonial />
  11. <Brands />
  12. <Counter />
  13. <Screenshots />
  14. <Faq />
  15. <BlogHome />
  16. <Subscribe />
  17. <Footer />
  18. </div>
  19. </template>
  20. <script>
  21. import HeaderTwo from "~/components/HeaderTwo.vue";
  22. import BannerTwo from "~/components/BannerTwo.vue";
  23. import Features from "~/components/Features.vue";
  24. import Video from "~/components/Video.vue";
  25. import CallToAction from "~/components/CallToAction.vue";
  26. import CallToActionTwo from "~/components/CallToActionTwo.vue";
  27. import Pricing from "~/components/Pricing.vue";
  28. import Testimonial from "~/components/Testimonial.vue";
  29. import Brands from "~/components/Brands.vue";
  30. import Counter from "~/components/Counter.vue";
  31. import Screenshots from "~/components/Screenshots.vue";
  32. import Faq from "~/components/Faq.vue";
  33. import BlogHome from "~/components/BlogHome.vue";
  34. import Subscribe from "~/components/Subscribe.vue";
  35. import Footer from "~/components/Footer.vue";
  36. export default {
  37. components: {
  38. HeaderTwo,
  39. BannerTwo,
  40. Features,
  41. Video,
  42. CallToAction,
  43. CallToActionTwo,
  44. Pricing,
  45. Testimonial,
  46. Brands,
  47. Counter,
  48. Screenshots,
  49. Faq,
  50. BlogHome,
  51. Subscribe,
  52. Footer,
  53. },
  54. head(){
  55. return {
  56. title: "Home 2 | Vue Nuxt Software App Landing Page Template"
  57. }
  58. }
  59. }
  60. </script>