forked from CodingCatDev/codingcat.dev
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path+page.svelte
More file actions
22 lines (20 loc) · 789 Bytes
/
+page.svelte
File metadata and controls
22 lines (20 loc) · 789 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<script lang="ts">
import type { Podcast } from '$lib/types';
import HomeCampaign from './(home-partials)/(home-campaign)/HomeCampaign.svelte';
import HomeLatestCourse from './(home-partials)/(home-latest-course)/HomeLatestCourse.svelte';
import HomePodcast from './(home-partials)/(home-podcast)/HomePodcast.svelte';
import HomeProBenefits from './(home-partials)/(home-pro-benefits)/HomeProBenefits.svelte';
import HomeReviews from './(home-partials)/(home-reviews)/HomeReviews.svelte';
import HomeTeam from './(home-partials)/(home-team)/HomeTeam.svelte';
export let data: {
podcasts: Podcast[];
};
</script>
<div class="relative">
<HomeCampaign />
<HomeReviews />
<HomeLatestCourse />
<HomeProBenefits />
<HomePodcast podcasts={data.podcasts} />
<HomeTeam />
</div>