Compare commits
No commits in common. "3da49413fd2a7128e861671ee7e0b6736d29958a" and "6b8a3ca613d6698cbdb8835d34177ff6359fdfcd" have entirely different histories.
3da49413fd
...
6b8a3ca613
2
.gitignore
vendored
@ -22,5 +22,3 @@ logs
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
|
||||
*.zip
|
||||
942
.yarn/releases/yarn-4.9.2.cjs
vendored
@ -1,3 +0,0 @@
|
||||
nodeLinker: node-modules
|
||||
|
||||
yarnPath: .yarn/releases/yarn-4.9.2.cjs
|
||||
22
README.md
@ -1,19 +1,9 @@
|
||||
# Quantum
|
||||
# Сборка проекта
|
||||
|
||||
Чтобы изменить ссылки, телефоны, почту и прочее, можно воспользоваться файлом `app.config.ts` и собрать проект.
|
||||
Запустить
|
||||
|
||||
## Разработка
|
||||
```shell
|
||||
yarn generate
|
||||
```
|
||||
|
||||
Для запуска проекта необходимо:
|
||||
- Версия NodeJS не ниже **18**
|
||||
- Глобально установить **yarn** с помощью команды `npm install -g yarn`
|
||||
- Установить зависимости `yarn install`
|
||||
- Запуск режима разработки `yarn run dev`
|
||||
|
||||
## Сборка
|
||||
|
||||
Чтобы собрать проект:
|
||||
- Установить зависимости `yarn install`
|
||||
- Запуск сборки `yarn run build`
|
||||
|
||||
Скопировать содержимое директории `dist` в нужную директорию на веб-хостинге
|
||||
Скопировать содержимое директории `dist` в директорию `/www` на хостинге
|
||||
|
||||
@ -1,11 +1,9 @@
|
||||
export default defineAppConfig({
|
||||
instagramUrl: 'https://www.instagram.com/quantumbot.kz/',
|
||||
instagramUrl: 'https://www.instagram.com/samatk7/?igsh=Mm9keGxnbXBrdGQ4',
|
||||
telegramUrl: 'https://t.me/+vOQDGC3VoUJmY2Qy',
|
||||
whatsappUrl: 'https://api.whatsapp.com/send/?phone=77473990582&text&type=phone_number&app_absent=0',
|
||||
phoneNumber: '+7 747 477 43 92',
|
||||
whatsappUrl: 'https://api.whatsapp.com/send/?phone=7077407714&text&type=phone_number&app_absent=0',
|
||||
phoneNumber: '+7 (705) 400 20 66',
|
||||
email: 'support@quantumbot.kz',
|
||||
appUrl: 'https://app.quantumbot.kz',
|
||||
videoUrl: 'https://www.youtube.com/embed/qngK9wsEAxg',
|
||||
baseUrl: import.meta.env.URL || 'https://quantumbot.kz',
|
||||
astanaHubUrl: 'https://astanahub.com/account/company/17721/',
|
||||
videoUrl: 'https://www.youtube.com/embed/dQw4w9WgXcQ?si=dZCL9UFbyboiQzSl',
|
||||
})
|
||||
|
||||
5
app.vue
@ -5,12 +5,9 @@
|
||||
<HomepageHero />
|
||||
<HomepageResults />
|
||||
<HomepageHowItWorks />
|
||||
<HomepageAnalytics />
|
||||
<!-- <HomepageTariff />-->
|
||||
<HomepageReferralProgram />
|
||||
<HomepageTariff />
|
||||
<HomepageReviews />
|
||||
<HomepageFaq />
|
||||
<HomepageOurTeam />
|
||||
<HomepageAnyQuestions />
|
||||
</main>
|
||||
|
||||
|
||||
@ -9,7 +9,7 @@
|
||||
</div>
|
||||
|
||||
<div class="footer__copyright">
|
||||
@ 2024-2025 ТОО Quantum Technology. Все права защищены
|
||||
@ 2024-2025 Quantum. Все права защищены
|
||||
</div>
|
||||
|
||||
<div class="footer__socials">
|
||||
@ -52,16 +52,16 @@ const app = useAppConfig()
|
||||
display: grid;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
grid-template-areas:
|
||||
'documents copyright'
|
||||
'socials dev';
|
||||
'documents copyright'
|
||||
'socials dev';
|
||||
padding-inline: 60px;
|
||||
gap: 32px;
|
||||
|
||||
@include mobile {
|
||||
grid-template-areas:
|
||||
'documents documents'
|
||||
'copyright copyright'
|
||||
'socials dev';
|
||||
'documents documents'
|
||||
'copyright copyright'
|
||||
'socials dev';
|
||||
padding-inline: 16px;
|
||||
column-gap: 16px;
|
||||
}
|
||||
|
||||
@ -2,8 +2,7 @@
|
||||
<header class="header">
|
||||
<div class="container">
|
||||
<div class="header__inner">
|
||||
<NuxtImg src="/logo.svg" alt="one2one" class="header__logo desktop-only" draggable="false" />
|
||||
<NuxtImg src="/logo-compact.svg" alt="one2one" class="header__logo mobile-only" draggable="false" />
|
||||
<NuxtImg src="/logo.svg" alt="one2one" class="header__logo" draggable="false" />
|
||||
|
||||
<hr class="header__divider desktop-only">
|
||||
|
||||
@ -27,10 +26,6 @@
|
||||
<hr class="header__divider">
|
||||
|
||||
<PhoneNumber />
|
||||
|
||||
<UiButton :href="app.appUrl" rel="noopener noreferrer" class="header__sign-in">
|
||||
Войти
|
||||
</UiButton>
|
||||
</div>
|
||||
</div>
|
||||
</header>
|
||||
@ -106,19 +101,5 @@ const app = useAppConfig()
|
||||
gap: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
&__sign-in {
|
||||
height: 40px;
|
||||
padding-block: 9px;
|
||||
margin-left: 24px;
|
||||
|
||||
@include mobile {
|
||||
@include font(12px, 500, 15px);
|
||||
|
||||
height: 32px;
|
||||
padding: 7.5px 15px;
|
||||
margin-left: 12px;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@ -1,123 +0,0 @@
|
||||
<template>
|
||||
<HomepageSection
|
||||
class="analytics"
|
||||
title="Аналитика продаж "
|
||||
description="на Kaspi.kz"
|
||||
>
|
||||
<div class="analytics__inner">
|
||||
<NuxtImg class="analytics__background desktop-only" src="/analytics-bg.png" height="763px" format="webp" draggable="false" />
|
||||
|
||||
<div class="analytics__content">
|
||||
<div class="analytics__header">
|
||||
<NuxtImg class="mobile-only" src="/analytics-bg.png" height="76px" format="webp" draggable="false" />
|
||||
|
||||
<div class="analytics__title">
|
||||
Получите полную картину по продажам на Kaspi.kz с помощью нашего сервиса! Наша аналитика – на 100% точная
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="analytics__list-title">
|
||||
Что вы узнаете?
|
||||
</div>
|
||||
<ul class="analytics__list">
|
||||
<li>Выручка – анализ доходности по категориям и товарам</li>
|
||||
<li>Средний чек – оценка покупательской способности</li>
|
||||
<li>Количество заказов – динамика продаж за выбранный период</li>
|
||||
<li>Популярные категории – какие товары продаются лучше всего</li>
|
||||
<li>Конкуренция – число продавцов в каждом товаре</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</HomepageSection>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
const app = useAppConfig()
|
||||
const img = useImage()
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.analytics {
|
||||
&__inner {
|
||||
position: relative;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: flex-start;
|
||||
height: 400px;
|
||||
padding: 24px 100px;
|
||||
border-radius: 12px;
|
||||
background-color: $color-gray-200;
|
||||
|
||||
@include mobile {
|
||||
padding: 16px;
|
||||
height: unset;
|
||||
}
|
||||
}
|
||||
|
||||
&__background {
|
||||
position: absolute;
|
||||
max-height: unset;
|
||||
max-width: unset;
|
||||
left: 0;
|
||||
top: 50%;
|
||||
transform: translateY(-50%);
|
||||
}
|
||||
|
||||
&__content {
|
||||
width: 610px;
|
||||
margin-left: auto;
|
||||
|
||||
@include mobile {
|
||||
width: unset;
|
||||
}
|
||||
}
|
||||
|
||||
&__header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 24px;
|
||||
margin-bottom: 24px;
|
||||
|
||||
@include mobile {
|
||||
align-items: flex-start;
|
||||
}
|
||||
}
|
||||
|
||||
&__title {
|
||||
@include font(20px, 500, 28px);
|
||||
|
||||
@include mobile {
|
||||
@include font(14px, 500, 20px);
|
||||
}
|
||||
}
|
||||
|
||||
&__list-title {
|
||||
@include font(16px, 700, 29px);
|
||||
|
||||
color: $color-gray-700;
|
||||
|
||||
@include mobile {
|
||||
@include font(12px, 400, 22px);
|
||||
}
|
||||
}
|
||||
|
||||
&__list {
|
||||
@include font(16px, 400, 29px);
|
||||
|
||||
color: $color-gray-700;
|
||||
|
||||
@include mobile {
|
||||
@include font(12px, 400, 22px);
|
||||
}
|
||||
}
|
||||
|
||||
&__action {
|
||||
margin-top: 24px;
|
||||
|
||||
@include mobile {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -88,8 +88,7 @@ const app = useAppConfig()
|
||||
}
|
||||
}
|
||||
|
||||
&__right {
|
||||
}
|
||||
&__right {}
|
||||
|
||||
&__call-us {
|
||||
color: $color-gray-600;
|
||||
@ -101,6 +100,7 @@ const app = useAppConfig()
|
||||
|
||||
@include mobile {
|
||||
@include font(16px, 700, 20px, 'phone-number', true);
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -53,6 +53,7 @@
|
||||
|
||||
margin-bottom: 24px;
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
</style>
|
||||
|
||||
@ -1,19 +1,16 @@
|
||||
<template>
|
||||
<div class="homepage-hero">
|
||||
<div class="container">
|
||||
<a :href="app.astanaHubUrl" target="_blank" rel="noopener noreferrer">
|
||||
<UiBadge class="homepage-hero__badge">
|
||||
Участник Astana Hub
|
||||
</UiBadge>
|
||||
</a>
|
||||
<div class="homepage-hero__description">
|
||||
Приложение для автоматической регулировки цен товаров
|
||||
</div>
|
||||
|
||||
<h1 class="homepage-hero__title">
|
||||
Сервис умных закупок <br>
|
||||
и эффективного управления продажами на <b>Kaspi.kz</b>
|
||||
Автоматизация цен <br> <strong>для максимальной прибыли</strong> на <b>Kaspi.kz</b>
|
||||
</h1>
|
||||
|
||||
<div class="homepage-hero__subtitle">
|
||||
Помогаем выгодно закупать товары, автоматизировать продажи и сохранять конкурентоспособность
|
||||
Помогаем увеличивать продажи и оставаться конкурентоспособными
|
||||
</div>
|
||||
|
||||
<div class="homepage-hero__actions desktop-only">
|
||||
@ -89,17 +86,21 @@
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
const app = useAppConfig()
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.homepage-hero {
|
||||
text-align: center;
|
||||
|
||||
&__badge {
|
||||
&__description {
|
||||
@include font(15px, 300, 18px);
|
||||
|
||||
color: $color-gray-600;
|
||||
margin-bottom: 24px;
|
||||
|
||||
@include mobile {
|
||||
@include font(11px, 300, 13px);
|
||||
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
}
|
||||
@ -147,7 +148,7 @@ const app = useAppConfig()
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 40px;
|
||||
padding-block: 16px;
|
||||
padding-blocK: 16px;
|
||||
margin-top: 24px;
|
||||
|
||||
@include mobile {
|
||||
|
||||
@ -63,12 +63,11 @@
|
||||
allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share"
|
||||
referrerpolicy="strict-origin-when-cross-origin"
|
||||
allowfullscreen
|
||||
loading="lazy"
|
||||
/>
|
||||
|
||||
<ul class="how-it-works-demo__list">
|
||||
<li>Оцените интерфейс приложения для ПК и мобильных девайсов</li>
|
||||
<li>Ознакомьтесь с примером добавления товара на предзаказ</li>
|
||||
<li>Ознакомьтесь с интерфейсом приложения для ПК</li>
|
||||
<li>Оцените удобство мобильного интерфейса</li>
|
||||
<li>Просмотрите пример добавления товаров и управления ими через приложение</li>
|
||||
</ul>
|
||||
|
||||
@ -148,12 +147,12 @@ const app = useAppConfig()
|
||||
@include desktop {
|
||||
display: grid;
|
||||
justify-items: flex-start;
|
||||
grid-template-columns: 1fr 1fr;
|
||||
grid-template-columns: 485px 1fr;
|
||||
grid-template-rows: 1fr auto 1fr;
|
||||
grid-template-areas:
|
||||
'title video'
|
||||
'list video'
|
||||
'action video';
|
||||
'title video'
|
||||
'list video'
|
||||
'action video';
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
|
||||
@ -1,109 +0,0 @@
|
||||
<template>
|
||||
<HomepageSection
|
||||
class="our-team"
|
||||
title="Наша команда"
|
||||
>
|
||||
<Splide class="our-team__carousel" :options="splideOptions">
|
||||
<SplideSlide>
|
||||
<HomepageOurTeamMember
|
||||
avatar-url="/our-team/nurbek.png"
|
||||
name="Нурбек Зейнуллаев"
|
||||
position="Со-основатель / CEO"
|
||||
>
|
||||
<li>15+ лет предпринимательского опыта</li>
|
||||
<li>Эксперт в инвестициях и технологиях</li>
|
||||
<li>Специализация: стратегическое развитие бизнеса</li>
|
||||
</HomepageOurTeamMember>
|
||||
</SplideSlide>
|
||||
|
||||
<SplideSlide>
|
||||
<HomepageOurTeamMember
|
||||
avatar-url="/our-team/timur.png"
|
||||
name="Тимур Сергеев"
|
||||
position="Со-основатель / CTO"
|
||||
>
|
||||
<li>10+ лет управления проектами</li>
|
||||
<li>Опыт в IT и крупных федеральных проектах</li>
|
||||
<li>Работал в российских и американских корпорациях</li>
|
||||
</HomepageOurTeamMember>
|
||||
</SplideSlide>
|
||||
|
||||
<SplideSlide>
|
||||
<HomepageOurTeamMember
|
||||
avatar-url="/our-team/abdulla.png"
|
||||
name="Абдулла Садаев"
|
||||
position="Со-основатель / CFO"
|
||||
>
|
||||
<li>Магистр наук (Wageningen/Aarhus)</li>
|
||||
<li>8 лет в управлении межднародными проектами в Cargill</li>
|
||||
<li>Эксперт по финансовым моделям и рискам</li>
|
||||
</HomepageOurTeamMember>
|
||||
</SplideSlide>
|
||||
|
||||
<SplideSlide>
|
||||
<HomepageOurTeamMember
|
||||
avatar-url="/our-team/ruslan.png"
|
||||
name="Руслан Кошкаров"
|
||||
position="Account Executive"
|
||||
>
|
||||
<li>6+ лет в клиентском сервисе</li>
|
||||
<li>Опыт в IT и обучении пользователей</li>
|
||||
<li>Специализация: системы поддержки</li>
|
||||
</HomepageOurTeamMember>
|
||||
</SplideSlide>
|
||||
|
||||
<SplideSlide>
|
||||
<HomepageOurTeamMember
|
||||
avatar-url="/our-team/anton.png"
|
||||
name="Антон Келлер"
|
||||
position="Product designer"
|
||||
>
|
||||
<li>6 лет в продуктовом дизайне</li>
|
||||
<li>Победитель Ozon fintech contest</li>
|
||||
<li>Эксперт по эвристическому методу оценки интерфейсов</li>
|
||||
</HomepageOurTeamMember>
|
||||
</SplideSlide>
|
||||
</Splide>
|
||||
</HomepageSection>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import type { Options as SplideOptions } from '@splidejs/splide'
|
||||
import { Splide, SplideSlide } from '@splidejs/vue-splide'
|
||||
|
||||
const splideOptions = computed(() => ({
|
||||
gap: 16,
|
||||
autoWidth: true,
|
||||
arrows: false,
|
||||
pagination: false,
|
||||
mediaQuery: 'min',
|
||||
padding: { right: 16, left: 16 },
|
||||
breakpoints: {
|
||||
481: {
|
||||
destroy: true,
|
||||
},
|
||||
},
|
||||
} as SplideOptions))
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.our-team {
|
||||
&__carousel {
|
||||
@include desktop {
|
||||
.splide__track {
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
.splide__list {
|
||||
display: flex !important;
|
||||
justify-content: center;
|
||||
gap: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
@include mobile {
|
||||
margin-inline: -16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -1,60 +0,0 @@
|
||||
<template>
|
||||
<div class="our-team-member">
|
||||
<div class="our-team-member__avatar">
|
||||
<NuxtImg :src="avatarUrl" width="200" height="200" format="webp" draggable="false" />
|
||||
</div>
|
||||
|
||||
<div class="our-team-member__name">
|
||||
{{ name }}
|
||||
</div>
|
||||
|
||||
<div class="our-team-member__position">
|
||||
{{ position }}
|
||||
</div>
|
||||
|
||||
<ul class="our-team-member__experience">
|
||||
<slot />
|
||||
</ul>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
defineProps<{
|
||||
avatarUrl: string
|
||||
name: string
|
||||
position: string
|
||||
}>()
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.our-team-member {
|
||||
width: 220px;
|
||||
|
||||
&__avatar {
|
||||
margin-bottom: 32px;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
&__name {
|
||||
@include font(18px, 700, 28px);
|
||||
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
&__position {
|
||||
@include font(14px, 500, 25px);
|
||||
|
||||
margin-top: 8px;
|
||||
text-align: center;
|
||||
color: #6236f5;
|
||||
}
|
||||
|
||||
&__experience {
|
||||
@include font(12px, 400, 18px);
|
||||
|
||||
list-style: disc;
|
||||
color: #787a82;
|
||||
margin-top: 16px;
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -1,140 +0,0 @@
|
||||
<template>
|
||||
<div class="referral-program">
|
||||
<div class="container">
|
||||
<div class="referral-program__inner">
|
||||
<div class="referral-program__header">
|
||||
<NuxtImg class="mobile-only" src="/referral-program-bg-mobile.png" height="80px" format="webp" draggable="false" />
|
||||
|
||||
<div class="referral-program__title">
|
||||
Реферальная программа
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<p class="referral-program__description">
|
||||
Получайте вознаграждение за пополнение пользователей,<br>
|
||||
которые зарегистрируются и воспользуется нашим сервисом
|
||||
</p>
|
||||
|
||||
<ul class="referral-program__list">
|
||||
<li>Получите свою уникальную ссылку в личном кабинете</li>
|
||||
<li>Поделитесь ею с друзьями, коллегами или в соцсетях</li>
|
||||
<li>Зарабатывайте. Больше друзей – больше бонусов!</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
const app = useAppConfig()
|
||||
const img = useImage()
|
||||
|
||||
const desktopBg = computed(() => {
|
||||
return `url('${img('/referral-program-bg.png', { height: '375px', format: 'webp' })}')`
|
||||
})
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.referral-program {
|
||||
&__inner {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: flex-start;
|
||||
padding: 16px 100px;
|
||||
border-radius: 12px;
|
||||
height: 407px;
|
||||
color: $color-white;
|
||||
|
||||
@include desktop {
|
||||
background-image: v-bind(desktopBg), linear-gradient(260.36deg, #21dac2 0%, #008574 86.86%);
|
||||
background-repeat: no-repeat;
|
||||
background-position:
|
||||
center right 100px,
|
||||
center;
|
||||
}
|
||||
|
||||
@include mobile {
|
||||
background-color: $color-green-400;
|
||||
background-image: none;
|
||||
padding: 16px;
|
||||
height: unset;
|
||||
}
|
||||
}
|
||||
|
||||
&__header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 16px;
|
||||
}
|
||||
|
||||
&__title {
|
||||
@include font(32px, 700, 45px);
|
||||
|
||||
@include mobile {
|
||||
@include font(20px, 700, 28px);
|
||||
}
|
||||
}
|
||||
|
||||
&__description {
|
||||
@include font(18px, 400, 32px);
|
||||
|
||||
margin-top: 24px;
|
||||
|
||||
@include mobile {
|
||||
@include font(12px, 400, 22px);
|
||||
|
||||
margin-top: 16px;
|
||||
}
|
||||
}
|
||||
|
||||
&__list {
|
||||
@include font(15px, 600, 15px);
|
||||
|
||||
list-style: none;
|
||||
margin-top: 24px;
|
||||
padding-left: 0;
|
||||
|
||||
@include mobile {
|
||||
@include font(12px, 600, 15px);
|
||||
|
||||
margin-top: 16px;
|
||||
}
|
||||
|
||||
li {
|
||||
position: relative;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 16px;
|
||||
counter-increment: referral-program-item;
|
||||
|
||||
&:not(:last-child) {
|
||||
margin-bottom: 21px;
|
||||
|
||||
&::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
left: 16px;
|
||||
top: 36px;
|
||||
height: 13px;
|
||||
border-left: 1px dashed $color-lemon-500;
|
||||
}
|
||||
}
|
||||
|
||||
&::before {
|
||||
@include font(16px, 600, 32px);
|
||||
|
||||
display: block;
|
||||
content: counter(referral-program-item);
|
||||
height: 32px;
|
||||
width: 32px;
|
||||
flex-shrink: 0;
|
||||
text-align: center;
|
||||
background-color: $color-lemon-500;
|
||||
color: $color-black;
|
||||
border-radius: 8px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -183,6 +183,7 @@ import InfoButton from '~/components/info-button.vue'
|
||||
|
||||
@include desktop {
|
||||
grid-row: span 2;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -40,7 +40,7 @@
|
||||
|
||||
<Splide ref="splideEl" class="reviews__carousel" :options="splideOptions">
|
||||
<SplideSlide v-for="i in 6" :key="i">
|
||||
<NuxtImg class="reviews__review" :src="`/reviews/${i}.png`" height="416" format="webp" draggable="false" />
|
||||
<NuxtImg class="reviews__review" :src="`/reviews/${i}.png`" height="416" format="webp" />
|
||||
</SplideSlide>
|
||||
</Splide>
|
||||
|
||||
|
||||
@ -5,7 +5,7 @@
|
||||
{{ title }}
|
||||
</div>
|
||||
|
||||
<p v-if="description" class="homepage-section__description">
|
||||
<p class="homepage-section__description">
|
||||
{{ description }}
|
||||
</p>
|
||||
|
||||
@ -19,7 +19,7 @@
|
||||
<script setup lang="ts">
|
||||
defineProps<{
|
||||
title: string
|
||||
description?: string
|
||||
description: string
|
||||
}>()
|
||||
</script>
|
||||
|
||||
|
||||
@ -1,107 +1,94 @@
|
||||
<template>
|
||||
<HomepageSection
|
||||
class="tariff"
|
||||
title="Тарифы"
|
||||
description="Выберите тариф, подходящий под потребности Вашего бизнеса"
|
||||
title="Единый тариф"
|
||||
description="Получите полный доступ ко всему функционалу за фиксированную цену"
|
||||
>
|
||||
<Splide class="tariff__carousel" :options="splideOptions">
|
||||
<SplideSlide>
|
||||
<HomepageTariffCard title="Seller" price-per-month="10 000">
|
||||
Идеально для небольших <br class="desktop-only">
|
||||
или <br class="mobile-only">
|
||||
узкоспециализированных магазинов
|
||||
<div class="tariff__inner">
|
||||
<div class="tariff__header">
|
||||
<NuxtImg class="mobile-only" src="/price-bg.png" height="35px" format="webp" />
|
||||
|
||||
<template #list>
|
||||
<HomepageTariffCardListItem>
|
||||
Автокорректировка цен <br>
|
||||
до <strong>50 товаров</strong>
|
||||
</HomepageTariffCardListItem>
|
||||
<HomepageTariffCardListItem>Настройка предзаказа</HomepageTariffCardListItem>
|
||||
<HomepageTariffCardListItem>Поддержка 24/7</HomepageTariffCardListItem>
|
||||
<HomepageTariffCardListItem>Не конкурировать со своими магазинами</HomepageTariffCardListItem>
|
||||
<HomepageTariffCardListItem>Высокая скорость обновления цен</HomepageTariffCardListItem>
|
||||
</template>
|
||||
</HomepageTariffCard>
|
||||
</SplideSlide>
|
||||
<div class="tariff__price">
|
||||
30 000 ₸ / месяц
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<SplideSlide>
|
||||
<HomepageTariffCard title="Seller Pro" price-per-month="20 000" popular>
|
||||
Подойдет тем, кто активно торгует на Kaspi
|
||||
<ul class="tariff__list">
|
||||
<li>Безлимитное количество товаров</li>
|
||||
<li>Поддержка 24/7</li>
|
||||
<li>Высокая скорость обновления цен</li>
|
||||
</ul>
|
||||
|
||||
<template #list>
|
||||
<HomepageTariffCardListItem>
|
||||
Автокорректировка цен <br>
|
||||
до <strong>300 товаров</strong>
|
||||
</HomepageTariffCardListItem>
|
||||
<HomepageTariffCardListItem>Настройка предзаказа</HomepageTariffCardListItem>
|
||||
<HomepageTariffCardListItem>Поддержка 24/7</HomepageTariffCardListItem>
|
||||
<HomepageTariffCardListItem>Не конкурировать со своими магазинами</HomepageTariffCardListItem>
|
||||
<HomepageTariffCardListItem>Высокая скорость обновления цен</HomepageTariffCardListItem>
|
||||
</template>
|
||||
</HomepageTariffCard>
|
||||
</SplideSlide>
|
||||
|
||||
<SplideSlide>
|
||||
<HomepageTariffCard title="Seller Ultimate" price-per-month="30 000">
|
||||
Для крупных игроков и магазинов с большим ассортиментом товаров
|
||||
|
||||
<template #list>
|
||||
<HomepageTariffCardListItem>
|
||||
Автокорректировка цен <br>
|
||||
до <strong>3500 товаров</strong>
|
||||
</HomepageTariffCardListItem>
|
||||
<HomepageTariffCardListItem>Настройка предзаказа</HomepageTariffCardListItem>
|
||||
<HomepageTariffCardListItem hot>
|
||||
<strong>Приоритетная</strong> Поддержка 24/7
|
||||
</HomepageTariffCardListItem>
|
||||
<HomepageTariffCardListItem>Не конкурировать со своими магазинами</HomepageTariffCardListItem>
|
||||
<HomepageTariffCardListItem hot>
|
||||
<strong>Турбо</strong> скорость обновления цен
|
||||
</HomepageTariffCardListItem>
|
||||
<HomepageTariffCardListItem>Детальная аналитика продаж на Kaspi.kz</HomepageTariffCardListItem>
|
||||
</template>
|
||||
</HomepageTariffCard>
|
||||
</SplideSlide>
|
||||
</Splide>
|
||||
<UiButton class="tariff__action" :href="app.appUrl" rel="noopener noreferrer">
|
||||
Попробовать 7 дней бесплатно
|
||||
</UiButton>
|
||||
</div>
|
||||
</HomepageSection>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
import type { Options as SplideOptions } from '@splidejs/splide'
|
||||
import { Splide, SplideSlide } from '@splidejs/vue-splide'
|
||||
<script setup>
|
||||
const app = useAppConfig()
|
||||
const img = useImage()
|
||||
|
||||
const splideOptions = computed(() => ({
|
||||
gap: 22,
|
||||
autoWidth: true,
|
||||
arrows: false,
|
||||
pagination: false,
|
||||
mediaQuery: 'min',
|
||||
padding: { right: 16, left: 16 },
|
||||
breakpoints: {
|
||||
481: {
|
||||
destroy: true,
|
||||
},
|
||||
},
|
||||
} as SplideOptions))
|
||||
const desktopBg = computed(() => {
|
||||
return `url('${img('/price-bg.png', { height: '352px', format: 'webp' })}')`
|
||||
})
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.tariff {
|
||||
&__carousel {
|
||||
@include desktop {
|
||||
.splide__track {
|
||||
overflow: visible;
|
||||
}
|
||||
&__inner {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
justify-content: center;
|
||||
align-items: flex-start;
|
||||
height: 400px;
|
||||
padding: 24px 100px;
|
||||
border-radius: 12px;
|
||||
background-color: $color-gray-200;
|
||||
|
||||
.splide__list {
|
||||
display: grid !important;
|
||||
grid-template-columns: repeat(3, 1fr);
|
||||
gap: 32px;
|
||||
}
|
||||
@include desktop {
|
||||
background-image: v-bind(desktopBg);
|
||||
background-repeat: no-repeat;
|
||||
background-position: center right 128px;
|
||||
}
|
||||
|
||||
@include mobile {
|
||||
margin-inline: -16px;
|
||||
padding: 16px;
|
||||
height: unset;
|
||||
}
|
||||
}
|
||||
|
||||
&__header {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 24px;
|
||||
}
|
||||
|
||||
&__price {
|
||||
@include font(28px, 700, 39px);
|
||||
|
||||
@include mobile {
|
||||
@include font(20px, 700, 28px);
|
||||
}
|
||||
}
|
||||
|
||||
&__list {
|
||||
@include font(16px, 400, 29px);
|
||||
|
||||
color: $color-gray-700;
|
||||
margin-top: 24px;
|
||||
|
||||
@include mobile {
|
||||
@include font(12px, 400, 22px);
|
||||
}
|
||||
}
|
||||
|
||||
&__action {
|
||||
margin-top: 24px;
|
||||
|
||||
@include mobile {
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1,70 +0,0 @@
|
||||
<template>
|
||||
<li class="tariff-card-list-item">
|
||||
<svg
|
||||
v-if="hot"
|
||||
class="tariff-card-list-item__hot"
|
||||
width="16"
|
||||
height="16"
|
||||
viewBox="0 0 17 17"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
style="vertical-align: middle;"
|
||||
>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.56606 1.95038C9.63306 1.12274 9.31294 1.01479 8.85508 1.70321L4.25408 8.62123C3.94901 9.07994 4.14962 9.4518 4.70039 9.4518H7.203C7.75456 9.4518 8.17042 9.88968 8.13006 10.4547L7.80896 14.9501C7.74972 15.7795 8.05021 15.8709 8.47381 15.1649L13.1901 7.30439C13.4727 6.83352 13.2538 6.4518 12.703 6.4518H10.2004C9.64882 6.4518 9.2382 6.00082 9.28189 5.46102L9.56606 1.95038Z" fill="#FF9E0C" />
|
||||
</svg>
|
||||
|
||||
<slot />
|
||||
</li>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
defineProps<{
|
||||
hot?: boolean
|
||||
}>()
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.tariff-card-list-item {
|
||||
@include font(16px, 400, 20px);
|
||||
|
||||
color: var(--tariff-card-list-item-color, $color-gray-700);
|
||||
position: relative;
|
||||
padding-left: 43px;
|
||||
padding-top: 3px;
|
||||
min-height: 25px;
|
||||
|
||||
@include mobile {
|
||||
@include font(11px, 400, 14px);
|
||||
|
||||
min-height: unset;
|
||||
padding-left: 24px;
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
&:not(:last-child) {
|
||||
margin-bottom: 27px;
|
||||
|
||||
@include mobile {
|
||||
margin-bottom: 18px;
|
||||
}
|
||||
}
|
||||
|
||||
&::before {
|
||||
position: absolute;
|
||||
left: 0px;
|
||||
top: 0;
|
||||
content: '';
|
||||
display: block;
|
||||
mask-image: url(/checkmark.svg);
|
||||
mask-size: cover;
|
||||
width: 24px;
|
||||
height: 25px;
|
||||
background-color: var(--tariff-card-list-item-checkmark-color, #3ed37a);
|
||||
|
||||
@include mobile {
|
||||
width: 16px;
|
||||
height: 17px;
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -1,168 +0,0 @@
|
||||
<template>
|
||||
<div
|
||||
class="tariff-card"
|
||||
:class="{
|
||||
'tariff-card--popular': popular,
|
||||
}"
|
||||
>
|
||||
<div class="tariff-card__title">
|
||||
{{ title }}
|
||||
</div>
|
||||
|
||||
<div class="tariff-card__description">
|
||||
<slot />
|
||||
</div>
|
||||
|
||||
<div class="tariff-card__price">
|
||||
₸ {{ pricePerMonth }}<sub>/месяц</sub>
|
||||
</div>
|
||||
|
||||
<UiButton
|
||||
class="tariff-card__action"
|
||||
:type="popular ? 'promo' : 'primary'"
|
||||
:href="app.appUrl"
|
||||
rel="noopener noreferrer"
|
||||
>
|
||||
Попробовать 3 дня бесплатно
|
||||
</UiButton>
|
||||
|
||||
<ul class="tariff-card__list">
|
||||
<slot name="list" />
|
||||
</ul>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
defineProps<{
|
||||
title: string
|
||||
pricePerMonth: string
|
||||
popular?: boolean
|
||||
}>()
|
||||
|
||||
const app = useAppConfig()
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.tariff-card {
|
||||
$self: &;
|
||||
|
||||
padding: 40px;
|
||||
border-radius: 12px;
|
||||
border: 1px solid $color-gray-500;
|
||||
background-color: $color-gray-200;
|
||||
height: 100%;
|
||||
|
||||
@include mobile {
|
||||
width: 260px;
|
||||
padding: 16px;
|
||||
}
|
||||
|
||||
&--popular {
|
||||
position: relative;
|
||||
color: $color-white;
|
||||
background-color: $color-green-500;
|
||||
border-width: 0;
|
||||
|
||||
@include desktop {
|
||||
box-shadow: 0px 40px 50px 0px #056e6266;
|
||||
}
|
||||
|
||||
&::before {
|
||||
pointer-events: none;
|
||||
inset: 0;
|
||||
content: '';
|
||||
display: block;
|
||||
position: absolute;
|
||||
background-image: url(/strips.png);
|
||||
background-size: cover;
|
||||
opacity: 0.05;
|
||||
}
|
||||
}
|
||||
|
||||
&__title {
|
||||
@include font(30px, 700, 1);
|
||||
|
||||
@include mobile {
|
||||
@include font(20px, 700, 26px);
|
||||
}
|
||||
}
|
||||
|
||||
&__description {
|
||||
@include font(17px, 400, 22px);
|
||||
|
||||
color: $color-gray-700;
|
||||
min-height: 44px;
|
||||
|
||||
@include mobile {
|
||||
@include font(12px, 400, 15px);
|
||||
|
||||
min-height: 30px;
|
||||
}
|
||||
|
||||
#{$self}--popular & {
|
||||
color: $color-gray-400;
|
||||
}
|
||||
}
|
||||
|
||||
&__price {
|
||||
@include font(55px, 600, 39px);
|
||||
|
||||
height: 39px;
|
||||
margin-top: 40px;
|
||||
|
||||
@include mobile {
|
||||
@include font(37px, 700, 26px);
|
||||
|
||||
height: 26px;
|
||||
margin-top: 16px;
|
||||
}
|
||||
|
||||
sub {
|
||||
@include font(20px, 600, 26px);
|
||||
|
||||
color: $color-gray-700;
|
||||
vertical-align: unset;
|
||||
bottom: 0.3em;
|
||||
margin-left: 8px;
|
||||
|
||||
#{$self}--popular & {
|
||||
color: $color-gray-400;
|
||||
}
|
||||
|
||||
@include mobile {
|
||||
@include font(13px, 600, 17px);
|
||||
|
||||
height: 26px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
&__action {
|
||||
margin-top: 40px;
|
||||
|
||||
@include mobile {
|
||||
width: 100%;
|
||||
margin-top: 16px;
|
||||
height: 32px;
|
||||
font-size: 11px;
|
||||
padding: 0;
|
||||
border-radius: 8px;
|
||||
}
|
||||
}
|
||||
|
||||
&__list {
|
||||
margin-top: 40px;
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
|
||||
@include mobile {
|
||||
margin-top: 16px;
|
||||
}
|
||||
|
||||
#{$self}--popular & {
|
||||
--tariff-card-list-item-color: #{$color-white};
|
||||
--tariff-card-list-item-checkmark-color: #{$color-lemon-500};
|
||||
}
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -9,13 +9,13 @@
|
||||
|
||||
<template #popper>
|
||||
Зарегистрируйтесь и получите <br>
|
||||
3 дня бесплатной подписки для <br>
|
||||
7 дней бесплатной подписки для <br>
|
||||
ознакомления с сервисом
|
||||
</template>
|
||||
</Tooltip>
|
||||
|
||||
<p class="info-button__hint mobile-only">
|
||||
Зарегистрируйтесь и получите 3 дня бесплатной подписки для ознакомления с сервисом
|
||||
Зарегистрируйтесь и получите 14 дней бесплатной подписки для ознакомления с сервисом
|
||||
</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
@ -32,6 +32,7 @@ const { y } = useWindowScroll()
|
||||
&:hover {
|
||||
color: $color-black;
|
||||
background-color: $color-gray-400;
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@ -86,4 +86,4 @@
|
||||
padding: 0 16px 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1,25 +0,0 @@
|
||||
<template>
|
||||
<div :class="cn.b()">
|
||||
<slot />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
const cn = useClassname('ui-badge')
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.ui-badge {
|
||||
@include font(15px, 500, 15px);
|
||||
|
||||
display: inline-block;
|
||||
border-radius: 3px;
|
||||
padding: 4px 8px;
|
||||
color: $color-gray-700;
|
||||
background-color: $color-gray-400;
|
||||
|
||||
@include mobile {
|
||||
@include font(10px, 500, 15px);
|
||||
}
|
||||
}
|
||||
</style>
|
||||
@ -37,7 +37,7 @@
|
||||
import type { ButtonHTMLAttributes } from 'vue'
|
||||
|
||||
export interface Props {
|
||||
type?: 'primary' | 'secondary' | 'promo'
|
||||
type?: 'primary' | 'secondary'
|
||||
nativeType?: ButtonHTMLAttributes['type']
|
||||
disabled?: boolean
|
||||
}
|
||||
|
||||
@ -1,4 +1,4 @@
|
||||
@use 'sass:list';
|
||||
@use "sass:list";
|
||||
@use '../../../styles/mixins' as *;
|
||||
@use '../../../styles/variables' as *;
|
||||
|
||||
@ -24,15 +24,6 @@ $button-variants: [
|
||||
'hover-background': $color-gray-400,
|
||||
'active-background': $color-gray-500,
|
||||
)
|
||||
],
|
||||
[
|
||||
'promo',
|
||||
(
|
||||
'color': $color-black,
|
||||
'background': $color-lemon-500,
|
||||
'hover-background': $color-lemon-400,
|
||||
'active-background': $color-lemon-500,
|
||||
)
|
||||
]
|
||||
];
|
||||
|
||||
|
||||
@ -21,4 +21,4 @@
|
||||
.ui-collapse-transition-enter-from,
|
||||
.ui-collapse-transition-leave-to {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
@ -1,11 +0,0 @@
|
||||
import { useMediaQuery } from '@vueuse/core'
|
||||
|
||||
export default function useBreakpoints() {
|
||||
const isMobile = useMediaQuery('(max-width: 480px)')
|
||||
const isDesktop = computed(() => !isMobile.value)
|
||||
|
||||
return {
|
||||
isMobile,
|
||||
isDesktop,
|
||||
}
|
||||
}
|
||||
@ -8,7 +8,4 @@ export default antfu({
|
||||
}],
|
||||
},
|
||||
},
|
||||
formatters: {
|
||||
css: true,
|
||||
},
|
||||
})
|
||||
|
||||
@ -12,12 +12,9 @@ import ViteComponents from 'unplugin-vue-components/vite'
|
||||
|
||||
const { resolve } = createResolver(import.meta.url)
|
||||
|
||||
const baseUrl = import.meta.env.URL || 'https://quantumbot.kz'
|
||||
|
||||
export default defineNuxtConfig({
|
||||
devtools: { enabled: true },
|
||||
|
||||
// ssr: false,
|
||||
pages: false,
|
||||
app: {
|
||||
head: {
|
||||
@ -40,7 +37,7 @@ export default defineNuxtConfig({
|
||||
},
|
||||
{
|
||||
property: 'og:url',
|
||||
content: baseUrl,
|
||||
content: 'https://quantumbot.kz',
|
||||
},
|
||||
{
|
||||
property: 'og:type',
|
||||
@ -52,7 +49,7 @@ export default defineNuxtConfig({
|
||||
},
|
||||
{
|
||||
property: 'og:image',
|
||||
content: `${baseUrl}/web-app-manifest-192x192.png`,
|
||||
content: 'https://quantumbot.kz/android-chrome-192x192.png',
|
||||
},
|
||||
{
|
||||
name: 'theme-color',
|
||||
@ -112,19 +109,8 @@ export default defineNuxtConfig({
|
||||
},
|
||||
},
|
||||
],
|
||||
'@nuxt/scripts',
|
||||
],
|
||||
|
||||
$production: {
|
||||
scripts: {
|
||||
registry: {
|
||||
metaPixel: {
|
||||
id: '992723452252630',
|
||||
},
|
||||
},
|
||||
},
|
||||
},
|
||||
|
||||
googleFonts: {
|
||||
families: {
|
||||
Onest: [300, 400, 500, 600, 700, 800, 900],
|
||||
|
||||
14
package.json
@ -26,24 +26,20 @@
|
||||
"devDependencies": {
|
||||
"@antfu/eslint-config": "^3.9.2",
|
||||
"@iconify/tools": "^4.0.7",
|
||||
"@nuxt/devtools": "^2.6.2",
|
||||
"@nuxt/devtools": "latest",
|
||||
"@nuxt/image": "^1.8.1",
|
||||
"@nuxt/scripts": "0.9.5",
|
||||
"@nuxt/ui-templates": "^1.3.4",
|
||||
"@nuxtjs/google-fonts": "^3.2.0",
|
||||
"@types/lodash-es": "^4.17.12",
|
||||
"@types/uuid": "^10.0.0",
|
||||
"eslint": "^9.15.0",
|
||||
"eslint-plugin-format": "^1.0.1",
|
||||
"nuxt": "^4.0.3",
|
||||
"nuxt": "latest",
|
||||
"nuxt-svgo": "^4.0.9",
|
||||
"sass": "^1.81.0",
|
||||
"typescript": "^5.7.2",
|
||||
"unplugin-icons": "^0.20.1",
|
||||
"unplugin-vue-components": "^0.27.4",
|
||||
"vue": "^3.5.18",
|
||||
"vue-router": "^4.5.1",
|
||||
"vue": "latest",
|
||||
"vue-router": "latest",
|
||||
"vue-tsc": "^2.1.10"
|
||||
},
|
||||
"packageManager": "yarn@4.9.2"
|
||||
}
|
||||
}
|
||||
|
||||
|
Before Width: | Height: | Size: 4.4 MiB |
@ -1,3 +0,0 @@
|
||||
<svg width="24" height="25" viewBox="0 0 24 25" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.0968 1.74024C12.8858 0.718096 11.1142 0.718098 9.90323 1.74024L8.80035 2.67112C8.28563 3.10556 7.64869 3.36941 6.97753 3.42617L5.53944 3.54778C3.96037 3.68132 2.70769 4.934 2.57415 6.51307L2.45253 7.95116C2.39578 8.62232 2.13192 9.25927 1.69749 9.774L0.766607 10.8769C-0.255536 12.0879 -0.255535 13.8594 0.766607 15.0704L1.69749 16.1733C2.13192 16.688 2.39578 17.325 2.45253 17.9961L2.57415 19.4343C2.70769 21.0133 3.96037 22.266 5.53944 22.3995L6.97753 22.5211C7.64869 22.578 8.28563 22.8418 8.80036 23.2762L9.90323 24.2071C11.1142 25.2291 12.8858 25.2291 14.0968 24.2071L15.1997 23.2762C15.7144 22.8418 16.3514 22.578 17.0225 22.5211L18.4606 22.3995C20.0397 22.266 21.2924 21.0133 21.4259 19.4343L21.5474 17.9961C21.6043 17.325 21.8681 16.688 22.3026 16.1733L23.2335 15.0704C24.2555 13.8594 24.2555 12.0879 23.2335 10.8769L22.3026 9.77398C21.8681 9.25927 21.6043 8.62232 21.5474 7.95116L21.4259 6.51307C21.2924 4.934 20.0397 3.68132 18.4606 3.54778L17.0225 3.42617C16.3514 3.36941 15.7144 3.10556 15.1997 2.67112L14.0968 1.74024ZM17.9113 10.7573C18.4826 10.186 18.4826 9.2598 17.9113 8.68852C17.3401 8.11723 16.4138 8.11723 15.8425 8.68852L10.3753 14.1557L8.15892 11.9393C7.58764 11.368 6.66141 11.368 6.09013 11.9393C5.51883 12.5106 5.51883 13.4368 6.09013 14.0081L9.34092 17.2588C9.9122 17.8302 10.8384 17.8302 11.4097 17.2588L17.9113 10.7573Z" fill="currentColor"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 1.5 KiB |
|
Before Width: | Height: | Size: 2.9 MiB After Width: | Height: | Size: 3.1 MiB |
|
Before Width: | Height: | Size: 505 KiB After Width: | Height: | Size: 490 KiB |
@ -1,3 +0,0 @@
|
||||
<svg width="17" height="17" viewBox="0 0 17 17" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M9.56606 1.95038C9.63306 1.12274 9.31294 1.01479 8.85508 1.70321L4.25408 8.62123C3.94901 9.07994 4.14962 9.4518 4.70039 9.4518H7.203C7.75456 9.4518 8.17042 9.88968 8.13006 10.4547L7.80896 14.9501C7.74972 15.7795 8.05021 15.8709 8.47381 15.1649L13.1901 7.30439C13.4727 6.83352 13.2538 6.4518 12.703 6.4518H10.2004C9.64882 6.4518 9.2382 6.00082 9.28189 5.46102L9.56606 1.95038Z" fill="#FF9E0C"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 546 B |
@ -1,4 +0,0 @@
|
||||
<svg width="17" height="18" viewBox="0 0 17 18" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M16.6049 11.8724H11.1544V17.323H16.6049V11.8724Z" fill="#008574"/>
|
||||
<path d="M5.70055 0.968018C2.69015 0.968018 0.25 3.40817 0.25 6.41858V11.8692C0.25 14.8796 2.69015 17.3197 5.70055 17.3197L11.1511 11.8692H5.70055V6.41858H11.1511V11.8692L16.6016 6.41858C16.6016 3.40817 14.1615 0.968018 11.1511 0.968018H5.70055Z" fill="#008574"/>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 443 B |
|
Before Width: | Height: | Size: 490 KiB |
|
Before Width: | Height: | Size: 136 KiB |
|
Before Width: | Height: | Size: 691 KiB |
|
Before Width: | Height: | Size: 149 KiB |
|
Before Width: | Height: | Size: 600 KiB |
|
Before Width: | Height: | Size: 150 KiB |
|
Before Width: | Height: | Size: 486 KiB |
|
Before Width: | Height: | Size: 126 KiB |
|
Before Width: | Height: | Size: 2.7 MiB |
|
Before Width: | Height: | Size: 112 KiB |
|
Before Width: | Height: | Size: 996 KiB |
|
Before Width: | Height: | Size: 172 KiB |
|
Before Width: | Height: | Size: 168 KiB |
@ -15,4 +15,4 @@
|
||||
|
||||
.v-popper--theme-tooltip .v-popper__arrow-outer {
|
||||
border-color: $color-black;
|
||||
}
|
||||
}
|
||||
@ -2,9 +2,9 @@
|
||||
@use '@splidejs/vue-splide/css/core';
|
||||
|
||||
@use 'mixins';
|
||||
@use 'normalize';
|
||||
@use 'utility';
|
||||
@use 'floating-vue';
|
||||
@use "normalize";
|
||||
@use "utility";
|
||||
@use "floating-vue";
|
||||
|
||||
*,
|
||||
*::before,
|
||||
@ -12,26 +12,19 @@
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
html,
|
||||
body {
|
||||
html, body {
|
||||
scroll-behavior: smooth;
|
||||
}
|
||||
|
||||
body {
|
||||
@include font(16px, 400, 20px);
|
||||
|
||||
font-family: 'Onest', sans-serif;
|
||||
font-family: "Onest", sans-serif;
|
||||
color: $color-black;
|
||||
background-color: $color-white;
|
||||
}
|
||||
|
||||
p,
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
p, h1, h2, h3, h4, h5, h6 {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
@ -63,4 +56,4 @@ button {
|
||||
@include mobile {
|
||||
padding-inline: 16px;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -8,4 +8,4 @@
|
||||
@media (min-width: 481px) {
|
||||
@content;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1,15 +1,18 @@
|
||||
@use 'sass:meta';
|
||||
@use 'sass:list';
|
||||
@use 'sass:string';
|
||||
@use "sass:meta";
|
||||
@use "sass:list";
|
||||
@use "sass:string";
|
||||
|
||||
@mixin element-variant($namespace, $variant: '', $map: ()) {
|
||||
@mixin element-variant(
|
||||
$namespace,
|
||||
$variant: '',
|
||||
$map: ()
|
||||
) {
|
||||
@if meta.type-of($map) == 'map' {
|
||||
$withDarkVariant: false;
|
||||
$variantPrefix: if(string.length($variant) > 0, '-' + $variant, '');
|
||||
|
||||
@at-root {
|
||||
:root,
|
||||
.light-theme {
|
||||
:root, .light-theme {
|
||||
@each $property, $value in $map {
|
||||
@if meta.type-of($value) == 'list' {
|
||||
@if $withDarkVariant == false and list.length($value) > 1 {
|
||||
|
||||
@ -1,3 +1,3 @@
|
||||
@forward 'element-variant';
|
||||
@forward 'typography';
|
||||
@forward 'adaptive';
|
||||
@forward "element-variant";
|
||||
@forward "typography";
|
||||
@forward "adaptive";
|
||||
169
styles/normalize.scss
vendored
@ -9,8 +9,8 @@
|
||||
*/
|
||||
|
||||
html {
|
||||
line-height: 1.15; /* 1 */
|
||||
-webkit-text-size-adjust: 100%; /* 2 */
|
||||
line-height: 1.15; /* 1 */
|
||||
-webkit-text-size-adjust: 100%; /* 2 */
|
||||
}
|
||||
|
||||
/* Sections
|
||||
@ -21,7 +21,7 @@ html {
|
||||
*/
|
||||
|
||||
body {
|
||||
margin: 0;
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -29,7 +29,7 @@ body {
|
||||
*/
|
||||
|
||||
main {
|
||||
display: block;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -38,8 +38,8 @@ main {
|
||||
*/
|
||||
|
||||
h1 {
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
font-size: 2em;
|
||||
margin: 0.67em 0;
|
||||
}
|
||||
|
||||
/* Grouping content
|
||||
@ -51,9 +51,9 @@ h1 {
|
||||
*/
|
||||
|
||||
hr {
|
||||
box-sizing: content-box; /* 1 */
|
||||
height: 0; /* 1 */
|
||||
overflow: visible; /* 2 */
|
||||
box-sizing: content-box; /* 1 */
|
||||
height: 0; /* 1 */
|
||||
overflow: visible; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
@ -62,8 +62,8 @@ hr {
|
||||
*/
|
||||
|
||||
pre {
|
||||
font-family: monospace, monospace; /* 1 */
|
||||
font-size: 1em; /* 2 */
|
||||
font-family: monospace, monospace; /* 1 */
|
||||
font-size: 1em; /* 2 */
|
||||
}
|
||||
|
||||
/* Text-level semantics
|
||||
@ -74,7 +74,7 @@ pre {
|
||||
*/
|
||||
|
||||
a {
|
||||
background-color: transparent;
|
||||
background-color: transparent;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -83,9 +83,9 @@ a {
|
||||
*/
|
||||
|
||||
abbr[title] {
|
||||
border-bottom: none; /* 1 */
|
||||
text-decoration: underline; /* 2 */
|
||||
text-decoration: underline dotted; /* 2 */
|
||||
border-bottom: none; /* 1 */
|
||||
text-decoration: underline; /* 2 */
|
||||
text-decoration: underline dotted; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
@ -94,7 +94,7 @@ abbr[title] {
|
||||
|
||||
b,
|
||||
strong {
|
||||
font-weight: bold;
|
||||
font-weight: bold;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -105,8 +105,8 @@ strong {
|
||||
code,
|
||||
kbd,
|
||||
samp {
|
||||
font-family: monospace, monospace; /* 1 */
|
||||
font-size: 1em; /* 2 */
|
||||
font-family: monospace, monospace; /* 1 */
|
||||
font-size: 1em; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
@ -114,7 +114,7 @@ samp {
|
||||
*/
|
||||
|
||||
small {
|
||||
font-size: 80%;
|
||||
font-size: 80%;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -124,18 +124,18 @@ small {
|
||||
|
||||
sub,
|
||||
sup {
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
font-size: 75%;
|
||||
line-height: 0;
|
||||
position: relative;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
sub {
|
||||
bottom: -0.25em;
|
||||
bottom: -0.25em;
|
||||
}
|
||||
|
||||
sup {
|
||||
top: -0.5em;
|
||||
top: -0.5em;
|
||||
}
|
||||
|
||||
/* Embedded content
|
||||
@ -145,18 +145,17 @@ sup {
|
||||
* Remove the border on images inside links in IE 10.
|
||||
*/
|
||||
|
||||
img,
|
||||
video {
|
||||
border-style: none;
|
||||
vertical-align: middle;
|
||||
font-style: italic;
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
img, video {
|
||||
border-style: none;
|
||||
vertical-align: middle;
|
||||
font-style: italic;
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
}
|
||||
|
||||
svg {
|
||||
color: inherit;
|
||||
vertical-align: middle;
|
||||
color: inherit;
|
||||
vertical-align: middle;
|
||||
}
|
||||
|
||||
/* Forms
|
||||
@ -172,10 +171,10 @@ input,
|
||||
optgroup,
|
||||
select,
|
||||
textarea {
|
||||
font-family: inherit; /* 1 */
|
||||
font-size: 100%; /* 1 */
|
||||
line-height: 1.15; /* 1 */
|
||||
margin: 0; /* 2 */
|
||||
font-family: inherit; /* 1 */
|
||||
font-size: 100%; /* 1 */
|
||||
line-height: 1.15; /* 1 */
|
||||
margin: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
@ -184,9 +183,8 @@ textarea {
|
||||
*/
|
||||
|
||||
button,
|
||||
input {
|
||||
/* 1 */
|
||||
overflow: visible;
|
||||
input { /* 1 */
|
||||
overflow: visible;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -195,9 +193,8 @@ input {
|
||||
*/
|
||||
|
||||
button,
|
||||
select {
|
||||
/* 1 */
|
||||
text-transform: none;
|
||||
select { /* 1 */
|
||||
text-transform: none;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -205,10 +202,10 @@ select {
|
||||
*/
|
||||
|
||||
button,
|
||||
[type='button'],
|
||||
[type='reset'],
|
||||
[type='submit'] {
|
||||
-webkit-appearance: button;
|
||||
[type="button"],
|
||||
[type="reset"],
|
||||
[type="submit"] {
|
||||
-webkit-appearance: button;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -216,11 +213,11 @@ button,
|
||||
*/
|
||||
|
||||
button::-moz-focus-inner,
|
||||
[type='button']::-moz-focus-inner,
|
||||
[type='reset']::-moz-focus-inner,
|
||||
[type='submit']::-moz-focus-inner {
|
||||
border-style: none;
|
||||
padding: 0;
|
||||
[type="button"]::-moz-focus-inner,
|
||||
[type="reset"]::-moz-focus-inner,
|
||||
[type="submit"]::-moz-focus-inner {
|
||||
border-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -228,10 +225,10 @@ button::-moz-focus-inner,
|
||||
*/
|
||||
|
||||
button:-moz-focusring,
|
||||
[type='button']:-moz-focusring,
|
||||
[type='reset']:-moz-focusring,
|
||||
[type='submit']:-moz-focusring {
|
||||
outline: 1px dotted ButtonText;
|
||||
[type="button"]:-moz-focusring,
|
||||
[type="reset"]:-moz-focusring,
|
||||
[type="submit"]:-moz-focusring {
|
||||
outline: 1px dotted ButtonText;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -239,7 +236,7 @@ button:-moz-focusring,
|
||||
*/
|
||||
|
||||
fieldset {
|
||||
padding: 0.35em 0.75em 0.625em;
|
||||
padding: 0.35em 0.75em 0.625em;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -250,12 +247,12 @@ fieldset {
|
||||
*/
|
||||
|
||||
legend {
|
||||
box-sizing: border-box; /* 1 */
|
||||
color: inherit; /* 2 */
|
||||
display: table; /* 1 */
|
||||
max-width: 100%; /* 1 */
|
||||
padding: 0; /* 3 */
|
||||
white-space: normal; /* 1 */
|
||||
box-sizing: border-box; /* 1 */
|
||||
color: inherit; /* 2 */
|
||||
display: table; /* 1 */
|
||||
max-width: 100%; /* 1 */
|
||||
padding: 0; /* 3 */
|
||||
white-space: normal; /* 1 */
|
||||
}
|
||||
|
||||
/**
|
||||
@ -263,7 +260,7 @@ legend {
|
||||
*/
|
||||
|
||||
progress {
|
||||
vertical-align: baseline;
|
||||
vertical-align: baseline;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -271,7 +268,7 @@ progress {
|
||||
*/
|
||||
|
||||
textarea {
|
||||
overflow: auto;
|
||||
overflow: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -279,19 +276,19 @@ textarea {
|
||||
* 2. Remove the padding in IE 10.
|
||||
*/
|
||||
|
||||
[type='checkbox'],
|
||||
[type='radio'] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
[type="checkbox"],
|
||||
[type="radio"] {
|
||||
box-sizing: border-box; /* 1 */
|
||||
padding: 0; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Correct the cursor style of increment and decrement buttons in Chrome.
|
||||
*/
|
||||
|
||||
[type='number']::-webkit-inner-spin-button,
|
||||
[type='number']::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
[type="number"]::-webkit-inner-spin-button,
|
||||
[type="number"]::-webkit-outer-spin-button {
|
||||
height: auto;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -299,17 +296,17 @@ textarea {
|
||||
* 2. Correct the outline style in Safari.
|
||||
*/
|
||||
|
||||
[type='search'] {
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
outline-offset: -2px; /* 2 */
|
||||
[type="search"] {
|
||||
-webkit-appearance: textfield; /* 1 */
|
||||
outline-offset: -2px; /* 2 */
|
||||
}
|
||||
|
||||
/**
|
||||
* Remove the inner padding in Chrome and Safari on macOS.
|
||||
*/
|
||||
|
||||
[type='search']::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
[type="search"]::-webkit-search-decoration {
|
||||
-webkit-appearance: none;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -318,8 +315,8 @@ textarea {
|
||||
*/
|
||||
|
||||
::-webkit-file-upload-button {
|
||||
-webkit-appearance: button; /* 1 */
|
||||
font: inherit; /* 2 */
|
||||
-webkit-appearance: button; /* 1 */
|
||||
font: inherit; /* 2 */
|
||||
}
|
||||
|
||||
/* Interactive
|
||||
@ -330,7 +327,7 @@ textarea {
|
||||
*/
|
||||
|
||||
details {
|
||||
display: block;
|
||||
display: block;
|
||||
}
|
||||
|
||||
/*
|
||||
@ -338,7 +335,7 @@ details {
|
||||
*/
|
||||
|
||||
summary {
|
||||
display: list-item;
|
||||
display: list-item;
|
||||
}
|
||||
|
||||
/* Misc
|
||||
@ -349,7 +346,7 @@ summary {
|
||||
*/
|
||||
|
||||
template {
|
||||
display: none;
|
||||
display: none;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -357,10 +354,10 @@ template {
|
||||
*/
|
||||
|
||||
[hidden] {
|
||||
display: none;
|
||||
display: none;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin: 0;
|
||||
padding-inline-start: 20px;
|
||||
margin: 0;
|
||||
padding-inline-start: 20px;
|
||||
}
|
||||
|
||||
@ -10,4 +10,4 @@
|
||||
@include desktop {
|
||||
display: none !important;
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -1,15 +1,12 @@
|
||||
$color-gray-200: #f9faff;
|
||||
$color-gray-200: #F9FAFF;
|
||||
$color-gray-300: #f6f7fb;
|
||||
$color-gray-400: #e7eaf3;
|
||||
$color-gray-500: #cfd5f0;
|
||||
$color-gray-600: #8890b8;
|
||||
$color-gray-700: #505a8a;
|
||||
$color-gray-700: #505A8A;
|
||||
|
||||
$color-green-400: #008574;
|
||||
$color-green-500: #056e62;
|
||||
|
||||
$color-white: #ffffff;
|
||||
$color-black: #021d54;
|
||||
|
||||
$color-lemon-400: #e8ff8a;
|
||||
$color-lemon-500: #e0ff5f;
|
||||
$color-white: #FFFFFF;
|
||||
$color-black: #021d54;
|
||||
@ -1,2 +1,2 @@
|
||||
@forward 'color';
|
||||
@forward 'transitions';
|
||||
@forward "color";
|
||||
@forward "transitions";
|
||||
@ -1,2 +1,2 @@
|
||||
$transition-duration: 0.2s;
|
||||
$transition-easing: ease-out;
|
||||
$transition-duration: .2s;
|
||||
$transition-easing: ease-out;
|
||||