123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- <template>
- <div v-if="hasFeatures" class="home-features">
- <div class="wrapper">
- <div class="container">
- <div class="features">
- <section
- v-for="(feature, index) in features"
- :key="index"
- class="feature"
- >
- <h2 class="title" v-if="feature.title">{{ feature.title }}</h2>
- <p class="details" v-if="feature.details">{{ feature.details }}</p>
- </section>
- </div>
- </div>
- </div>
- </div>
- </template>
- <script setup lang="ts">
- import { computed } from 'vue'
- import { useSiteDataByRoute, useFrontmatter } from 'vitepress'
- const data = useFrontmatter()
- const hasFeatures = computed(() => {
- return data.value.features && data.value.features.length > 0
- })
- const features = computed(() => {
- return data.value.features ? data.value.features : []
- })
- </script>
- <style scoped>
- .home-features {
- margin: 0 auto;
- padding: 2.5rem 0 2.75rem;
- max-width: 960px;
- }
- .home-hero + .home-features {
- padding-top: 0;
- }
- @media (min-width: 420px) {
- .home-features {
- padding: 3.25rem 0 3.5rem;
- }
- .home-hero + .home-features {
- padding-top: 0;
- }
- }
- @media (min-width: 720px) {
- .home-features {
- padding-right: 1.5rem;
- padding-left: 1.5rem;
- }
- }
- .wrapper {
- padding: 0 1.5rem;
- }
- .home-hero + .home-features .wrapper {
- border-top: 1px solid var(--c-divider);
- padding-top: 2.5rem;
- }
- @media (min-width: 420px) {
- .home-hero + .home-features .wrapper {
- padding-top: 3.25rem;
- }
- }
- @media (min-width: 720px) {
- .wrapper {
- padding-right: 0;
- padding-left: 0;
- }
- }
- .container {
- margin: 0 auto;
- max-width: 392px;
- }
- @media (min-width: 720px) {
- .container {
- max-width: 960px;
- }
- }
- .features {
- display: flex;
- flex-wrap: wrap;
- margin: -20px -24px;
- }
- .feature {
- flex-shrink: 0;
- padding: 20px 24px;
- width: 100%;
- }
- @media (min-width: 720px) {
- .feature {
- width: calc(100% / 3);
- }
- }
- .title {
- margin: 0;
- border-bottom: 0;
- line-height: 1.4;
- font-size: 1.25rem;
- font-weight: 500;
- }
- @media (min-width: 420px) {
- .title {
- font-size: 1.4rem;
- }
- }
- .details {
- margin: 0;
- line-height: 1.6;
- font-size: 1rem;
- color: var(--c-text-light);
- }
- .title + .details {
- padding-top: 0.25rem;
- }
- </style>
|