Skip to content

Commit 3145705

Browse files
committed
Import and use that for src
1 parent 10d10c9 commit 3145705

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

src/components/Sections/Ecosystem.svelte

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,17 +2,16 @@
22
import { Button, Typography } from '@frequency-chain/style-guide';
33
import SectionWrapper from './SectionWrapper.svelte';
44
import TicTokTag from '../TikTokTag.svelte';
5+
import WavesTwo from '$lib/assets/waves-two.svg';
6+
import MeWeLogo from '$lib/assets/ecosystem/mewe.svg';
7+
import SoarLogo from '$lib/assets/ecosystem/soar.svg';
58
</script>
69

710
<SectionWrapper id="ecosystem">
811
<div class="w-full overflow-hidden">
912
<div class="h-[36px] bg-white lg:h-[61px]"></div>
1013
<div class="relative mb-[-36px] bg-navy lg:mb-[-61px]">
11-
<img
12-
class="relative top-[-36px] z-10 max-w-none lg:top-[-61px] lg:w-full"
13-
alt=""
14-
src="src/lib/assets/waves-two.svg"
15-
/>
14+
<img class="relative top-[-36px] z-10 max-w-none lg:top-[-61px] lg:w-full" alt="" src={WavesTwo} />
1615
</div>
1716
</div>
1817
<div class="relative mt-[-100px] bg-navy pb-f64 md:pb-f120">
@@ -38,12 +37,12 @@
3837
</section>
3938
</div>
4039
<section class="freq-container py-10">
41-
<Typography tag="h1" class="mb-6 text-center font-title text-navyLight">
40+
<Typography tag="h1" class="text-navyLight mb-6 text-center font-title">
4241
Companies in the Frequency Ecosystem
4342
</Typography>
4443
<div class="flex w-full flex-wrap justify-around p-2 md:p-6">
45-
<img class="m-2 max-w-[300px] p-2 sm:m-2 md:m-2" alt="MeWe" src="src/lib/assets/ecosystem/mewe.svg" />
46-
<img class="m-2 max-w-[300px] p-2 sm:m-2 md:m-2" alt="Soar" src="src/lib/assets/ecosystem/soar.svg" />
44+
<img class="m-2 max-w-[300px] p-2 sm:m-2 md:m-2" alt="MeWe" src={MeWeLogo} />
45+
<img class="m-2 max-w-[300px] p-2 sm:m-2 md:m-2" alt="Soar" src={SoarLogo} />
4746
</div>
4847
</section>
4948
</SectionWrapper>

src/components/TikTokTag.svelte

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
<script lang="ts">
2+
import ThePeoplesBid from '$lib/assets/the-peoples-bid.svg';
3+
</script>
4+
15
<div class={$$restProps.class}>
2-
<img alt="The People's Bid for TikTok" src="src/lib/assets/the-peoples-bid.svg" />
6+
<img alt="The People's Bid for TikTok" src={ThePeoplesBid} />
37
</div>

0 commit comments

Comments
 (0)