Skip to content

Commit

Permalink
feature(scheduler) extract AvantageExample
Browse files Browse the repository at this point in the history
  • Loading branch information
rohrig committed Mar 8, 2023
1 parent 181c864 commit c44eadd
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 18 deletions.
19 changes: 19 additions & 0 deletions components/AvantageExample.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
<script setup lang="ts">
import TheFeatureGrid from "~~/components/elements/TheFeatureMapGrid.vue";
import TheBillboard from "~~/components/elements/TheBillboard.vue";
</script>

<template>
<div class="">
<div class="py-12 theme-mode dark:bg-black">
<div class="max-w-9xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center md:flex align-center md:justify-center ">
<TheBillboard />
</div>
</div>
</div>
<div class="flex justify-center dark:bg-gray-900 bg-gray-200">
<TheFeatureGrid />
</div>
</div>
</template>
20 changes: 2 additions & 18 deletions pages/index.vue
Original file line number Diff line number Diff line change
@@ -1,19 +1,3 @@
<script setup lang="ts">
import TheFeatureGrid from "~~/components/elements/TheFeatureMapGrid.vue";
import TheBillboard from "~~/components/elements/TheBillboard.vue";
</script>

<template>
<div class="">
<div class="py-12 theme-mode dark:bg-black">
<div class="max-w-9xl mx-auto px-4 sm:px-6 lg:px-8">
<div class="text-center md:flex align-center md:justify-center ">
<TheBillboard />
</div>
</div>
</div>
<div class="flex justify-center dark:bg-gray-900 bg-gray-200">
<TheFeatureGrid />
</div>
</div>
</template>
<AvantageExample/>
</template>

0 comments on commit c44eadd

Please sign in to comment.