Skip to content

Commit ffdd4a4

Browse files
authored
chore: webinar updates (#185)
1 parent dbe5cb5 commit ffdd4a4

File tree

3 files changed

+23
-7
lines changed

3 files changed

+23
-7
lines changed

apps/webinar/app/components/CountdownTimer.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
</template>
99

1010
<script setup lang="ts">
11-
const target = ref(new Date('2025-10-25T00:00:00'))
11+
const target = ref(new Date('2025-10-23T12:00:00'))
1212
1313
const state = ref({
1414
days: 0,

apps/webinar/app/components/Hero.vue

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,23 +6,35 @@
66
headline="🤔 Мечтаете о своем заведении?"
77
:links="links"
88
:ui="{
9-
headline: 'py-2 px-4 w-fit bg-secondary text-white rounded-md motion-preset-seesaw',
9+
headline: 'py-2 px-4 w-fit bg-[#f57e20] text-white rounded-md motion-preset-seesaw',
1010
links: 'motion-preset-oscillate motion-duration-2000',
1111
}"
1212
>
13+
<template #body>
14+
<div class="flex flex-col gap-2">
15+
<h3 class="flex flex-row gap-2 items-center text-xl font-bold">
16+
<UIcon name="i-lucide-calendar" class="size-8 text-secondary" /> 23 октября 2025
17+
</h3>
18+
<h3 class="flex flex-row gap-2 items-center text-xl font-bold">
19+
<UIcon name="i-lucide-clock" class="size-8 text-secondary" /> 12:00-13:30 (МСК)
20+
</h3>
21+
</div>
22+
</template>
23+
1324
<HeroVideo />
1425
</UPageHero>
1526
</template>
1627

1728
<script setup lang="ts">
1829
const links = ref([
1930
{
20-
label: 'Записаться',
31+
label: 'Зарегистрироваться через Telegram',
2132
to: 'https://t.me/SLFranchiseBot',
2233
target: '_blank',
23-
trailingIcon: 'i-lucide-arrow-right',
34+
trailingIcon: 'simple-icons:telegram',
35+
color: 'secondary' as const,
2436
ui: {
25-
base: 'px-6 text-xl',
37+
base: 'px-6 md:text-xl w-full md:w-fit',
2638
},
2739
},
2840
])

apps/webinar/app/pages/index.vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@
1010
:reverse="true"
1111
:features="firstSectionItems"
1212
>
13-
Тут фото?
13+
<div class="p-4 w-full h-full min-h-56 text-muted bg-accented rounded-lg">
14+
Тут фото?
15+
</div>
1416
</UPageSection>
1517

1618
<UPageSection
@@ -19,7 +21,9 @@
1921
orientation="horizontal"
2022
:features="secondSectionItems"
2123
>
22-
Тут фото?
24+
<div class="p-4 w-full h-full min-h-56 text-muted bg-accented rounded-lg">
25+
Тут фото?
26+
</div>
2327
</UPageSection>
2428

2529
<Countdown />

0 commit comments

Comments
 (0)