deprived-main-website/src/routes/zhen/+page.svelte
2024-04-11 15:54:26 +02:00

13 lines
No EOL
481 B
Svelte

<script lang="ts">
import TopAnimatedBackground from "./Comps/TopAnimatedBackground.svelte";
import { Parallax, ParallaxLayer, StickyLayer } from "svelte-parallax";
import ZhenAboutMe from "./Comps/AboutMe.svelte"
</script>
<Parallax sections={2} config={{ stiffness: 0.1, damping: 0.3 }}>
<TopAnimatedBackground/>
<ParallaxLayer rate={0.5} offset={0.5} style="background-color: var(--background);">
<ZhenAboutMe/>
</ParallaxLayer>
</Parallax>