add: - legal .md files - routers - home view - rewrite App.vue - update footer / header - update features
22 lines
670 B
Vue
22 lines
670 B
Vue
<template>
|
|
<div>
|
|
<HeroSection />
|
|
<FeaturesSection />
|
|
<CompatibilitySection />
|
|
<PricingSection />
|
|
<StepsSection />
|
|
<TestimonialsSection />
|
|
<FaqSection />
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import HeroSection from '../components/HeroSection.vue'
|
|
import FeaturesSection from '../components/FeaturesSection.vue'
|
|
import CompatibilitySection from '../components/CompatibilitySection.vue'
|
|
import PricingSection from '../components/PricingSection.vue'
|
|
import StepsSection from '../components/StepsSection.vue'
|
|
import TestimonialsSection from '../components/TestimonialsSection.vue'
|
|
import FaqSection from '../components/FaqSection.vue'
|
|
</script>
|