Skip to content

Commit

Permalink
build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Claire Olmstead committed Nov 21, 2024
1 parent 52bc0ba commit 2dfe01a
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
8 changes: 2 additions & 6 deletions src/components/Sections/About.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import SectionParagraph from '../SectionParagraph.svelte';
import SectionContent from '../SectionContent.svelte';
import AboutAnimation from '../Animations/About.svelte';
import AboutRoadImg from '$lib/assets/aboutRoad.jpg';
import RoadImg from '$lib/assets/About/road.jpg';
</script>

<SectionWrapper id="about">
Expand Down Expand Up @@ -38,9 +38,5 @@
</div>
</div>
<!-- Bottom border image -->
<img
src={AboutRoadImg}
alt="AboutRoad"
class="h-[145px] w-full object-cover sm:h-[185px] md:h-[250px] lg:h-[300px]"
/>
<img src={RoadImg} alt="AboutRoad" class="h-[145px] w-full object-cover sm:h-[185px] md:h-[250px] lg:h-[300px]" />
</SectionWrapper>
16 changes: 10 additions & 6 deletions src/components/Sections/Ecosystem.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,9 @@
import SectionWrapper from './SectionWrapper.svelte';
import TikTokTag from '../TikTokTag.svelte';
import WavesTwo from '$lib/assets/Ecosystem/waves-two.svg';
import MeWeLogo from '$lib/assets/Ecosystem/mewe.svg';
import SoarLogo from '$lib/assets/Ecosystem/soar.svg';
import MeWeLogo from '$lib/assets/Ecosystem/mewe-logo.svg';
import SoarLogo from '$lib/assets/Ecosystem/soar-logo.svg';
import SlideIn from '../SlideIn.svelte';
const logoClasses = 'max-h-[120px] px-3 py-5 w-full sm:w-1/2 lg:w-1/4';
</script>

<SectionWrapper id="ecosystem">
Expand Down Expand Up @@ -49,8 +47,14 @@
<h1 class="title-70 mb-6 text-center font-title text-primary">Companies in the Frequency Ecosystem</h1>
</SlideIn>
<div class="flex w-full flex-wrap justify-around p-2 md:p-6">
<img class={logoClasses} alt="MeWe" src={MeWeLogo} />
<img class={logoClasses} alt="Soar" src={SoarLogo} />
<img class="logo" alt="MeWe" src={MeWeLogo} />
<img class="logo" alt="Soar" src={SoarLogo} />
</div>
</section>
</SectionWrapper>

<style>
.logo {
@apply max-h-[120px] w-full px-3 py-5 sm:w-1/2 lg:w-1/4;
}
</style>

0 comments on commit 2dfe01a

Please sign in to comment.