This commit is contained in:
Никита Круглицкий
2024-11-26 17:21:30 +03:00
parent f1d817a4b8
commit 39bd403fc4
21 changed files with 93 additions and 46 deletions

View File

@@ -25,7 +25,7 @@
<NuxtImg height="650" class="homepage-hero__image mobile-only" src="/hero-mobile.png" draggable="false" format="webp" />
<div class="homepage-hero__actions mobile-only">
<UiButton type="secondary">
<UiButton type="secondary" href="#hero-cards">
Узнать подробности
</UiButton>

View File

@@ -72,7 +72,7 @@
<li>Просмотрите пример добавления товаров и управления ими через приложение</li>
</ul>
<UiButton class="how-it-works-demo__action">
<UiButton class="how-it-works-demo__action" href="/auth" rel="noopener noreferrer">
Попробовать бесплатно
</UiButton>
</div>

View File

@@ -19,8 +19,8 @@
<li>Высокая скорость обновления цен</li>
</ul>
<UiButton class="tariff__action">
Попробовать 14 дней бесплатно
<UiButton class="tariff__action" href="/auth" rel="noopener noreferrer">
Попробовать 7 дней бесплатно
</UiButton>
</div>
</HomepageSection>
@@ -30,7 +30,7 @@
const img = useImage()
const desktopBg = computed(() => {
return `url('${img('/price-bg.png', { height: '352px' })}')`
return `url('${img('/price-bg.png', { height: '352px', format: 'webp' })}')`
})
</script>

View File

@@ -1,6 +1,6 @@
<template>
<div class="info-button">
<UiButton class="info-button__button">
<UiButton class="info-button__button" href="/auth" rel="noopener noreferrer">
<slot>Начать бесплатно</slot>
</UiButton>