Skip to content

Commit dcdecbd

Browse files
add home reviews
1 parent 49f4fb6 commit dcdecbd

File tree

3 files changed

+45
-3
lines changed

3 files changed

+45
-3
lines changed

apps/codingcatdev/src/routes/(home-partials)/(home-campaign)/HomeCampaign.svelte

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,6 @@
3939
<Icon src={ArrowRight} theme="mini" class="w-6" />
4040
</button>
4141
</div>
42-
<div>
43-
<p>Join 5,000+ students and level up your skills</p>
44-
</div>
4542
<!-- TODO: Replace with actual users -->
4643
<div class="flex">
4744
<div>
@@ -87,6 +84,9 @@
8784
/>
8885
</div>
8986
</div>
87+
<div>
88+
<p>Join 5,000+ students and level up your skills</p>
89+
</div>
9090
</div>
9191
</div>
9292
</div>
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
<script>
2+
import { Icon } from '@steeze-ui/svelte-icon';
3+
import { VideoCamera, Star } from '@steeze-ui/heroicons';
4+
</script>
5+
6+
<section class="relative pt-20">
7+
<div class="bg-surface-300 h-96">
8+
<div class="flex gap-8 absolute top-0 -left-20">
9+
<div class="bcu-card max-w-sm -rotate-2">
10+
<div class="p-4 space-y-4">
11+
<article>
12+
<p>The CSS Animations course is phenomenal. Very beginner-friendly!</p>
13+
</article>
14+
<footer class="flex justify-between">
15+
<a href="/course/css-animations">CSS Animations</a>
16+
<Icon src={VideoCamera} theme="mini" class="w-6" />
17+
</footer>
18+
</div>
19+
</div>
20+
<div class="bcu-card max-w-sm rotate-2">
21+
<div class="p-4 space-y-4">
22+
<div class="flex">
23+
<Icon src={Star} theme="mini" class="w-6" />
24+
<Icon src={Star} theme="mini" class="w-6" />
25+
<Icon src={Star} theme="mini" class="w-6" />
26+
<Icon src={Star} theme="mini" class="w-6" />
27+
<Icon src={Star} theme="mini" class="w-6" />
28+
</div>
29+
<article>
30+
<p>The CSS Animations course is phenomenal. Very beginner-friendly!</p>
31+
</article>
32+
<footer class="flex justify-between">
33+
<a href="/course/css-animations">CSS Animations</a>
34+
<Icon src={VideoCamera} theme="mini" class="w-6" />
35+
</footer>
36+
</div>
37+
</div>
38+
</div>
39+
</div>
40+
</section>
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<script>
22
import HomeCampaign from './(home-partials)/(home-campaign)/HomeCampaign.svelte';
3+
import HomeReviews from './(home-partials)/(home-reviews)/HomeReviews.svelte';
34
</script>
45

56
<HomeCampaign />
7+
<HomeReviews />

0 commit comments

Comments
 (0)