Skip to content

Commit

Permalink
Added animation to sections
Browse files Browse the repository at this point in the history
  • Loading branch information
SamElfring committed Sep 27, 2023
1 parent 979e202 commit dd812f3
Showing 1 changed file with 33 additions and 9 deletions.
42 changes: 33 additions & 9 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,43 @@

<NavigationButtons class="mt-8" />

<AboutMe class="mt-8" />
<AboutMe
class="mt-8"
v-motion-slide-top
:delay="200"
/>

<div class="mt-8 block lg:flex lg:gap-16">
<Experiences class="flex-1" />

<Study class="flex-1" />
<Experiences
class="flex-1"
v-motion-slide-visible-once-top
:delay="200"
/>

<Study
class="flex-1"
v-motion-slide-visible-once-top
:delay="200"
/>
</div>

<Projects class="mt-8" />

<Skills class="mt-8" />

<Contact class="mt-8" />
<Projects
class="mt-8"
v-motion-slide-visible-once-top
:delay="200"
/>

<Skills
class="mt-8"
v-motion-slide-visible-once-top
:delay="200"
/>

<Contact
class="mt-8"
v-motion-slide-visible-once-top
:delay="200"
/>
</div>

<Footer />
Expand Down

0 comments on commit dd812f3

Please sign in to comment.