You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
419 B

  1. <template>
  2. <v-main>
  3. <the-top-banner />
  4. <feature-cards />
  5. <the-bottom-banner />
  6. </v-main>
  7. </template>
  8. <script>
  9. import FeatureCards from '@/components/layout/FeatureCards'
  10. import TheTopBanner from '@/components/layout/TheTopBanner'
  11. import TheBottomBanner from '@/components/layout/TheBottomBanner'
  12. export default {
  13. components: {
  14. FeatureCards,
  15. TheTopBanner,
  16. TheBottomBanner
  17. }
  18. }
  19. </script>