Skip to content

Commit

Permalink
fix(web): ensure components are imported via $
Browse files Browse the repository at this point in the history
  • Loading branch information
ferothefox committed Aug 10, 2023
1 parent 550c918 commit 5addb3d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/web/src/routes/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
import LandingHeroVideo from '$lib/components/landing/LandingVideo.svelte';
import LandingCTASection from '$lib/components/landing/LandingCTASection.svelte';
import LandingBentoSection from '$lib/components/landing/LandingBentoSection.svelte';
import LandingClientSection from '../lib/components/landing/LandingClientSection.svelte';
import LandingCLISection from '../lib/components/landing/LandingCLISection.svelte';
import LandingClientSection from '$lib/components/landing/LandingClientSection.svelte';
import LandingCLISection from '$lib/components/landing/LandingCLISection.svelte';
</script>

<svelte:head>
Expand Down

0 comments on commit 5addb3d

Please sign in to comment.