Skip to content

Commit

Permalink
Promo banner on home pricing section
Browse files Browse the repository at this point in the history
  • Loading branch information
Lakeyzer committed Jan 17, 2025
1 parent 37ac33e commit ddf23a9
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 21 deletions.
22 changes: 3 additions & 19 deletions src/components/home/General.vue
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,10 @@
track of during encounters. On top of that we enhance the player experience.<br />
<router-link to="/tools/combat-tracker" class="learn-more">Learn more</router-link>
</p>
<router-link to="/demo" class="btn btn-lg bg-accent">Try Demo Encounter</router-link>
</div>
<!-- <q-list>
<q-item
v-for="({ name, icon, title }, index) in items"
:key="`item-${index}`"
clickable
@click="setDialog(name)"
<router-link to="/demo/run-encounter" class="btn btn-lg bg-accent"
>Try Demo Encounter</router-link
>
<q-item-section avatar>
<i aria-hidden="true" :class="icon" class="neutral-2" />
</q-item-section>
<q-item-section>
{{ title }}
</q-item-section>
<q-item-section avatar>
<i aria-hidden="true" class="fas fa-eye neutral-3" />
</q-item-section>
</q-item>
</q-list> -->
</div>
</div>
</div>
</div>
Expand Down
9 changes: 7 additions & 2 deletions src/components/home/Pricing.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
<template>
<div class="pricing">
<div class="home__container">
<q-no-ssr>
<PromoBanner class="mb-5" :closable="false" />
</q-no-ssr>
<div class="row q-col-gutter-xl items-center">
<div class="col-12 col-md-6">
<div class="head">
Expand Down Expand Up @@ -34,15 +37,17 @@
></iframe>
</div>
</div>

<!-- <Tiers class="mb-4" /> -->
</div>
</div>
</template>

<script>
import PromoBanner from "../PromoBanner.vue";
export default {
name: "Pricing",
components: {
PromoBanner,
},
};
</script>

Expand Down

0 comments on commit ddf23a9

Please sign in to comment.