Skip to content

Commit

Permalink
Added prices/plans component
Browse files Browse the repository at this point in the history
  • Loading branch information
ecpieritz authored Jun 7, 2023
1 parent 1e24231 commit e05b8c8
Show file tree
Hide file tree
Showing 2 changed files with 108 additions and 1 deletion.
105 changes: 105 additions & 0 deletions src/components/prices/plans.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,105 @@

<template>
<div class="id-prices__plans" id="id-prices__plans">
<div class="container">
<div class="row">
<div class="col-md-4 id-prices__plans__item">
<div class="bg">
<div class="id-prices__plans__item__top">
<h3>Design advices</h3>
<div class="row">
<h3>$</h3> <h1>29</h1>
</div>
<h3>/month</h3>
</div>

<hr>

<div class="id-prices__plans__item__bottom">
<p>General living space advices</p>
<p>Rennovation advices</p>
<p>Interior design advices</p>
<p>Furniture reorganization</p>
<p>Up to 5 hours meetings</p>

<router-link class="btn gold-btn" to="/contact">Get Started <font-awesome-icon :icon="['fas', 'arrow-right']" /></router-link>
</div>
</div>

</div>

<div class="col-md-4 id-prices__plans__item">
<div class="bg">
<div class="id-prices__plans__item__top">
<h3>Complete interior</h3>
<div class="row">
<h3>$</h3> <h1 class="id-colors__text__gold">39</h1>
</div>
<h3>/month</h3>
</div>

<hr>

<div class="id-prices__plans__item__most-popular">
<p>Most Popular Plan</p>
</div>

<div class="id-prices__plans__item__bottom">
<p>Complete home redesign</p>
<p>Interior and exterior works</p>
<p>Modular interior planning</p>
<p>Kitchen design</p>
<p>Garages organization</p>

<router-link class="btn dark-btn" to="/contact">Get Started <font-awesome-icon :icon="['fas', 'arrow-right']" /></router-link>
</div>
</div>

</div>

<div class="col-md-4 id-prices__plans__item">
<div class="bg">
<div class="id-prices__plans__item__top">
<h3>Furniture design</h3>
<div class="row">
<h3>$</h3> <h1>59</h1>
</div>
<h3>/month</h3>
</div>

<hr>

<div class="id-prices__plans__item__bottom">
<p>Furniture for living room</p>
<p>Furniture refurbishment</p>
<p>Sofas and amchairs</p>
<p>Tables and chairs</p>
<p>Kitchens</p>

<router-link class="btn gold-btn" to="/contact">Get Started <font-awesome-icon :icon="['fas', 'arrow-right']" /></router-link>
</div>
</div>

</div>

</div>
</div>
</div>
</template>

<script>
export default {
name: 'PricesPlansComponent',
components: {
}
}
</script>

<style lang="scss">
@import '@/styles.scss';
.id-prices {
&__plans {
margin: 80px 0;
}
}</style>
4 changes: 3 additions & 1 deletion src/views/PricesView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,18 @@
<Banner />

<div class="container">
<Plans />
</div>
</main>
</template>

<script>
import Banner from '@/components/prices/banner.vue'
import Plans from '@/components/prices/plans.vue'
export default {
name: 'DefaultBannerView',
components: {
Banner
Banner, Plans
}
}
</script>
Expand Down

0 comments on commit e05b8c8

Please sign in to comment.