Skip to content

Commit e835dc4

Browse files
authored
chore: webinar updates (#198)
1 parent 0f23710 commit e835dc4

File tree

16 files changed

+30
-24
lines changed

16 files changed

+30
-24
lines changed

apps/webinar/app/components/Countdown.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<template>
2-
<div class="bg-elevated bg-cover" style="background-image: url('/countdown-background.jpg');">
2+
<div class="relative overflow-hidden bg-black/40">
3+
<div class="-z-10 absolute inset-0 -left-4 w-11/10 h-full bg-cover blur-[5px]" style="background-image: url('/countdown-bg.jpg');" />
34
<UPageSection
45
title="Получить готовый план"
56
description="И ответы на все свои вопросы, от поиска помещения до первого заработка. Мероприятие будет доступно через:"

apps/webinar/app/components/Footer.vue

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,8 @@
11
<template>
22
<UFooter :ui="{ top: 'border-b border-muted/50' }">
33
<template #top>
4-
<UContainer>
5-
<div class="w-full grid grid-cols-1 lg:grid-cols-3 gap-4 items-center justify-center">
6-
<div class="mx-auto md:mx-0 mb-2 md:mb-0">
7-
<Logo />
8-
</div>
9-
4+
<UContainer class="max-w-2xl">
5+
<div class="w-full grid grid-cols-1 lg:grid-cols-2 gap-4 items-center justify-center">
106
<UButton
117
v-for="item in items"
128
:key="item.to"

apps/webinar/app/components/Hero.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,13 +30,13 @@
3030
<script setup lang="ts">
3131
const links = ref([
3232
{
33-
label: 'Зарегистрироваться через Telegram',
33+
label: 'Зарегистрироваться',
3434
to: 'https://t.me/SLFranchiseBot',
3535
target: '_blank',
3636
trailingIcon: 'simple-icons:telegram',
3737
color: 'secondary' as const,
3838
ui: {
39-
base: 'px-6 md:text-xl w-full md:w-fit',
39+
base: 'px-6 md:px-12 md:text-xl text-xl font-bold w-full md:w-fit justify-center',
4040
},
4141
},
4242
])

apps/webinar/app/components/SpeakerCard.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
<template>
22
<div class="flex flex-col gap-3.5 motion-preset-slide-up">
3-
<div class="shrink-0 w-full h-auto text-muted bg-muted rounded-lg aspect-square">
4-
<img
5-
:src="speaker.image"
6-
alt=""
7-
class="w-full h-full object-cover rounded-lg"
8-
>
3+
<div class="shrink-0 relative w-full h-auto aspect-square">
4+
<div class="w-full h-full bg-secondary mask-[url(/heart-fill.svg)] mask-origin-fill mask-cover mask-center -rotate-4" />
5+
<div
6+
class="absolute inset-0 shrink-0 w-9/12 mx-auto my-auto aspect-square bg-cover -rotate-2"
7+
:style="`background-image: url(${speaker.image});`"
8+
/>
99
</div>
1010

1111
<div class="flex flex-col gap-2">

apps/webinar/app/components/Speakers.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,19 +25,19 @@ const speakers = ref([
2525
name: 'Лидия Трошина',
2626
caption: 'Директор по маркетингу франшизы «Суши Love»',
2727
description: 'Покажет стратегии по привлечению гостей работающие в 2025 году',
28-
image: '/speaker-1.jpg',
28+
image: '/speaker-1.png',
2929
},
3030
{
3131
name: 'Татьяна Панасевич',
3232
caption: 'Основатель сети суши-баров «Суши Love»',
3333
description: 'Открыла более 100 заведений, ответит на все ваши вопросы',
34-
image: '/speaker-2.jpg',
34+
image: '/speaker-2.png',
3535
},
3636
{
3737
name: 'Анна Михалко',
3838
caption: 'Наставник партнеров и эксперт по открытию новых точек франшизы',
3939
description: 'Даст пошаговый план открытия, который используют все наши партнеры',
40-
image: '/speaker-3.jpg',
40+
image: '/speaker-3.png',
4141
},
4242
])
4343
</script>

apps/webinar/app/pages/index.vue

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,20 +11,25 @@
1111
:reverse="true"
1212
:features="firstSectionItems"
1313
>
14-
<div class="p-4 w-full h-full min-h-56 text-muted bg-muted rounded-lg motion-preset-slide-right">
15-
Тут фото?
16-
</div>
14+
<div
15+
class="w-full h-fit aspect-3/2 min-h-56 text-muted bg-cover rounded-lg motion-preset-slide-right"
16+
style="background-image: url('/bg-1.jpg');"
17+
/>
1718
</UPageSection>
1819

1920
<UPageSection
2021
title="Что вы узнаете на вебинаре?"
2122
description="За 1,5 часа вы получите готовый план действий"
2223
orientation="horizontal"
2324
:features="secondSectionItems"
25+
:ui="{
26+
container: 'lg:pt-0',
27+
}"
2428
>
25-
<div class="p-4 w-full h-full min-h-56 text-muted bg-muted rounded-lg motion-preset-slide-left">
26-
Тут фото?
27-
</div>
29+
<div
30+
class="w-full h-fit aspect-3/2 min-h-56 text-muted bg-cover rounded-lg motion-preset-slide-left"
31+
style="background-image: url('/bg-2.jpg');"
32+
/>
2833
</UPageSection>
2934

3035
<Countdown />
@@ -33,6 +38,8 @@
3338
<Results />
3439
<Questions />
3540

41+
<InfiniteTitlesDivider />
42+
3643
<Footer />
3744
</template>
3845

apps/webinar/public/bg-1.jpg

94.1 KB
Loading

apps/webinar/public/bg-2.jpg

66.9 KB
Loading
252 KB
Loading

apps/webinar/public/heart-fill.svg

Lines changed: 2 additions & 0 deletions
Loading

0 commit comments

Comments
 (0)