diff --git a/src/components/Grow.svelte b/src/components/Grow.svelte new file mode 100644 index 00000000..08cc15d4 --- /dev/null +++ b/src/components/Grow.svelte @@ -0,0 +1,26 @@ + + +
(grow = 'grow-in')} + on:exitViewport={() => (grow = '')} +> + +
+ + diff --git a/src/components/Icons/CircleFour.svelte b/src/components/Icons/CircleFour.svelte index 361d586e..4da33817 100644 --- a/src/components/Icons/CircleFour.svelte +++ b/src/components/Icons/CircleFour.svelte @@ -1,8 +1,10 @@ -
+ -
+ diff --git a/src/components/Icons/CircleOne.svelte b/src/components/Icons/CircleOne.svelte index 60ba42f2..8d320ff0 100644 --- a/src/components/Icons/CircleOne.svelte +++ b/src/components/Icons/CircleOne.svelte @@ -1,8 +1,9 @@ -
+ -
+ diff --git a/src/components/Icons/CircleThree.svelte b/src/components/Icons/CircleThree.svelte index eeeee255..cc9be3b3 100644 --- a/src/components/Icons/CircleThree.svelte +++ b/src/components/Icons/CircleThree.svelte @@ -1,8 +1,10 @@ -
+ -
+ diff --git a/src/components/Icons/CircleTwo.svelte b/src/components/Icons/CircleTwo.svelte index bfec0785..8e265248 100644 --- a/src/components/Icons/CircleTwo.svelte +++ b/src/components/Icons/CircleTwo.svelte @@ -1,8 +1,10 @@ -
+ -
+ diff --git a/src/components/Sections/Ecosystem.svelte b/src/components/Sections/Ecosystem.svelte index cdf4a5a1..404fcb1e 100644 --- a/src/components/Sections/Ecosystem.svelte +++ b/src/components/Sections/Ecosystem.svelte @@ -5,6 +5,7 @@ import WavesTwo from '$lib/assets/waves-two.svg'; import MeWeLogo from '$lib/assets/ecosystem/mewe.svg'; import SoarLogo from '$lib/assets/ecosystem/soar.svg'; + import SlideIn from '../SlideIn.svelte'; const logoClasses = 'max-h-[120px] px-3 py-5 w-full sm:w-1/2 lg:w-1/4'; @@ -22,9 +23,11 @@
-

- Growing into a better Future Together -

+ +

+ Growing into a better Future Together +

+

Frequency is leading a new era of social networking, empowering businesses and apps to help users unlock the value of their data and connections. Chosen as the core infrastructure for Project Liberty’s “People’s Bid” to @@ -42,7 +45,9 @@

-

Companies in the Frequency Ecosystem

+ +

Companies in the Frequency Ecosystem

+
MeWe Soar diff --git a/src/components/SlideIn.svelte b/src/components/SlideIn.svelte index 7c91b0f2..490289fd 100644 --- a/src/components/SlideIn.svelte +++ b/src/components/SlideIn.svelte @@ -5,10 +5,22 @@
(slide = 'slide-from-right')} + on:enterViewport={() => (slide = 'slide-in')} on:exitViewport={() => (slide = '')} >
+ + diff --git a/src/style/app.css b/src/style/app.css index caff124f..fe0357e9 100644 --- a/src/style/app.css +++ b/src/style/app.css @@ -70,23 +70,6 @@ @apply w-full; } - @keyframes slide-from-right { - 0% { - opacity: 0; - transform: translateX(10%); - -webkit-transform: translateX(10%); - } - 100% { - transform: translateX(0%); - opacity: 1; - } - } - - .slide-from-right { - animation: slide-from-right 1s ease-out; - -webkit-animation: slide-from-right 1s ease-out; - } - .scroll-target { scroll-margin-top: 90px; }