Skip to content

Commit

Permalink
feat: configure index and app for landing page implementation
Browse files Browse the repository at this point in the history
  • Loading branch information
colinscz committed Dec 31, 2024
1 parent ad86342 commit 23eb6b8
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 3 deletions.
6 changes: 5 additions & 1 deletion app.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
<template>
<div>
<NuxtLayout>
<Navbar />
<NuxtPage />
</NuxtLayout>
</div>
</template>
</template>
<script setup lang="ts">
import Navbar from "~/components/Navbar.vue";
</script>
26 changes: 24 additions & 2 deletions pages/index.vue
Original file line number Diff line number Diff line change
@@ -1,9 +1,31 @@
<script setup lang="ts">
import Hero from "~/components/Hero.vue";
import Services from "~/components/Services.vue";
import Benefits from "~/components/Benefits.vue";
import Features from "~/components/Features.vue";
import Testimonials from "~/components/Testimonials.vue";
import HowItWorks from "~/components/HowItWorks.vue";
import Team from "~/components/Team.vue";
import Community from "~/components/Community.vue";
import Pricing from "~/components/Pricing.vue";
import Contact from "~/components/Contact.vue";
import FAQ from "~/components/FAQ.vue";
</script>

<template>

<Hero />
<Sponsors />
<Benefits />
<Features />
<Services />
<HowItWorks />
<Testimonials />
<Team />
<Community />
<Pricing />
<Contact />
<FAQ />
<Footer />
</template>

<style scoped>
Expand Down

0 comments on commit 23eb6b8

Please sign in to comment.