File tree 2 files changed +29
-3
lines changed
2 files changed +29
-3
lines changed Original file line number Diff line number Diff line change 1
1
<template >
2
2
<div >
3
3
<NuxtLayout >
4
+ <Navbar />
4
5
<NuxtPage />
5
6
</NuxtLayout >
6
7
</div >
7
- </template >
8
+ </template >
9
+ <script setup lang="ts">
10
+ import Navbar from " ~/components/Navbar.vue" ;
11
+ </script >
Original file line number Diff line number Diff line change 1
1
<script setup lang="ts">
2
-
2
+ import Hero from " ~/components/Hero.vue" ;
3
+ import Services from " ~/components/Services.vue" ;
4
+ import Benefits from " ~/components/Benefits.vue" ;
5
+ import Features from " ~/components/Features.vue" ;
6
+ import Testimonials from " ~/components/Testimonials.vue" ;
7
+ import HowItWorks from " ~/components/HowItWorks.vue" ;
8
+ import Team from " ~/components/Team.vue" ;
9
+ import Community from " ~/components/Community.vue" ;
10
+ import Pricing from " ~/components/Pricing.vue" ;
11
+ import Contact from " ~/components/Contact.vue" ;
12
+ import FAQ from " ~/components/FAQ.vue" ;
3
13
</script >
4
14
5
15
<template >
6
-
16
+ <Hero />
17
+ <Sponsors />
18
+ <Benefits />
19
+ <Features />
20
+ <Services />
21
+ <HowItWorks />
22
+ <Testimonials />
23
+ <Team />
24
+ <Community />
25
+ <Pricing />
26
+ <Contact />
27
+ <FAQ />
28
+ <Footer />
7
29
</template >
8
30
9
31
<style scoped>
You can’t perform that action at this time.
0 commit comments