This commit is contained in:
Kseninia Mikhaylova 2024-06-04 16:48:49 +03:00
parent c4908f7748
commit 13b8309c06
2 changed files with 15 additions and 2 deletions

View File

@ -58,11 +58,17 @@ const about = (pagesData.value as ApiPagesType[]).find(el => el.slug == 'about')
<div class="block-text"> <div class="block-text">
{{ about?.content }} {{ about?.content }}
</div> </div>
<div>
<NuxtLink to="#buy" class="block-btn">Купить прямо сейчас</NuxtLink>
</div>
</div> </div>
<div class="block-image"> <div class="block-image">
</div> </div>
</div> </div>
</div>
<div class="block bg-slate-500">
</div> </div>
<NuxtPage /> <NuxtPage />
</div> </div>

View File

@ -24,20 +24,27 @@ body {
@apply col-span-8 flex justify-between @apply col-span-8 flex justify-between
} }
a[href^="/#"] { a[href^="/#"]:not([class]) {
@apply underline decoration-dotted underline-offset-4 decoration-neutral-500 @apply underline decoration-dotted underline-offset-4 decoration-neutral-500
} }
.block { .block {
@apply py-10; @apply py-10;
&-content { &-content {
@apply col-span-6 @apply col-span-6 h-full flex flex-col justify-between
} }
&-title { &-title {
@apply text-5xl text-black @apply text-5xl text-black
} }
&-image { &-image {
@apply col-span-6 bg-slate-400; @apply col-span-6 bg-slate-400;
min-height: 50vh; min-height: 50vh;
} }
&-btn {
@apply rounded-full bg-primary-500 px-10 py-2 inline-block text-lg font-bold shadow-lg
}
} }