Никита Круглицкий b3c99a667a Initial commit
2024-11-26 16:15:12 +03:00

54 lines
849 B
Vue

<template>
<div class="homepage-section">
<div class="container">
<div class="homepage-section__title">
{{ title }}
</div>
<p class="homepage-section__description">
{{ description }}
</p>
<div class="homepage-section__content">
<slot />
</div>
</div>
</div>
</template>
<script setup lang="ts">
defineProps<{
title: string
description: string
}>()
</script>
<style lang="scss">
.homepage-section {
&__title {
@include font(36px, 700, 46px);
text-align: center;
@include mobile {
@include font(20px, 700, 26px);
}
}
&__description {
@include font(14px, 300, 17px);
text-align: center;
margin-top: 8px;
@include mobile {
@include font(13px, 300, 16px);
}
}
&__content {
margin-top: 40px;
}
}
</style>