Skip to content
This repository has been archived by the owner on May 16, 2023. It is now read-only.

Commit

Permalink
add pricing section to gift page
Browse files Browse the repository at this point in the history
  • Loading branch information
lindsaykwardell committed Nov 21, 2021
1 parent 371a062 commit 36f9657
Show file tree
Hide file tree
Showing 2 changed files with 53 additions and 6 deletions.
16 changes: 16 additions & 0 deletions components/Card.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<template>
<div class="sm:w-1/2 lg:w-1/3 card-body shadow-md p-3 bg-white">
<slot />
</div>
</template>

<script>
export default {};
</script>

<style lang="postcss" scoped>
.card-body {
position: relative;
min-height: 500px;
}
</style>
43 changes: 37 additions & 6 deletions pages/gift-of-healing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -69,10 +69,43 @@
sit amet lorem efficitur fringilla. Nunc ac rutrum mi. Donec sed
malesuada nisl.
</p>
<div class="flex justify-center">
<DonateButton />
</div>
</section>
<div class="flex items-center py-8">
<Card class="flex-1 bg-[#fafafa] flex flex-col">
<h3>Give Membership</h3>
<p class="flex-grow">
Give the gift of membership to a friend or family member. This gift
covers the cost of a membership for one year.
</p>
<div class="flex justify-center">
<DonateButton />
</div>
</Card>
<Card class="flex-1 h-[550px] flex flex-col">
<h3>
Gift of Membership <br />
+ Body Work
</h3>
<p class="flex-grow">
Give the gift of membership and a body work session. This gift
covers the cost of a membership for one year and a body work
session.
</p>
<div class="flex justify-center">
<DonateButton />
</div>
</Card>
<Card class="flex-1 bg-[#fafafa] flex flex-col">
<h3>Gift of Care</h3>
<p class="flex-grow">
Give the gift of care to a current member of the community. This
gift covers the cost of a one-time care session.
</p>
<div class="flex justify-center">
<DonateButton />
</div>
</Card>
</div>
</StandardTemplate>

<template #footer>
Expand All @@ -82,7 +115,5 @@
</template>

<script>
export default {
};
export default {};
</script>

0 comments on commit 36f9657

Please sign in to comment.