Skip to content

Commit

Permalink
Move animation section
Browse files Browse the repository at this point in the history
  • Loading branch information
prokawsar committed Nov 25, 2024
1 parent f3138fc commit c80d3e8
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/routes/+page.svelte
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
<script lang="ts">
import Hero from '$lib/components/sections/Hero.svelte'
import Head from '$lib/components/layouts/Head.svelte'
import Support from '$lib/components/sections/Support.svelte'
import AnimatedFeatures from '$lib/components/sections/AnimatedFeatures.svelte'
import Blog from '$lib/components/sections/Blog.svelte'
import Contribute from '$lib/components/sections/Contribute.svelte'
import Hero from '$lib/components/sections/Hero.svelte'
import OurApps from '$lib/components/sections/OurApps.svelte'
import Support from '$lib/components/sections/Support.svelte'
import Youtube from '$lib/components/sections/Youtube.svelte'
import AnimatedFeatures from '$lib/components/sections/AnimatedFeatures.svelte'
export let data
</script>

<Head />
<Hero />
<OurApps />
<AnimatedFeatures />
<OurApps />
<Blog posts={data.posts} />
<Youtube />
<Contribute />
Expand Down

0 comments on commit c80d3e8

Please sign in to comment.