1
1
<script >
2
2
import { FOCUS_OUTLINE } from ' $lib/classnames'
3
3
import Heading from ' $lib/components/heading.svelte'
4
- import FadeUp from ' $lib/components/helpers/fade-up.svelte'
5
4
import MentionLink from ' $lib/components/mention-link.svelte'
6
5
import PageHero from ' $lib/components/page-hero.svelte'
7
6
import PageSection from ' $lib/components/page-section.svelte'
@@ -25,20 +24,24 @@ let { data } = $props()
25
24
I’m<br />
26
25
Jeff<br />
27
26
Nelson
28
- {#snippet intro ({ intersecting })}
29
- <FadeUp showing ={intersecting } delay ={100 }>
30
- I’m a User Interface Developer. Previously, I’ve worked at
31
- <span class =" whitespace-nowrap"
32
- ><MentionLink site =" clari" >Clari</MentionLink >,</span
33
- >
34
- <span class =" whitespace-nowrap"
35
- ><MentionLink site =" showbie" >Showbie</MentionLink >,</span
36
- >
37
- and at
38
- <span class =" whitespace-nowrap"
39
- ><MentionLink site =" lift" >Lift Interactive</MentionLink >.</span
40
- >
41
- </FadeUp >
27
+ {#snippet intro ({ _intersecting })}
28
+ <!--
29
+ Disabling <FadeUp> here due to some error on initial page load
30
+ about `appendChild` not being a method on Node type.
31
+ -->
32
+ <!-- <FadeUp showing={intersecting} delay={100}> -->
33
+ I’m a User Interface Developer. Previously, I’ve worked at
34
+ <span class =" whitespace-nowrap"
35
+ ><MentionLink site =" clari" >Clari</MentionLink >,</span
36
+ >
37
+ <span class =" whitespace-nowrap"
38
+ ><MentionLink site =" showbie" >Showbie</MentionLink >,</span
39
+ >
40
+ and at
41
+ <span class =" whitespace-nowrap"
42
+ ><MentionLink site =" lift" >Lift Interactive</MentionLink >.</span
43
+ >
44
+ <!-- </FadeUp> -->
42
45
{/ snippet }
43
46
</PageHero >
44
47
<!-- <PageSection>
0 commit comments