From 8ed0a76c5f23ecd1ec2a058aab01125d9a738bd8 Mon Sep 17 00:00:00 2001 From: Lily Song Date: Fri, 18 Jul 2025 14:03:41 -0400 Subject: [PATCH 1/2] Update Enterprise.svelte --- src/lib/components/sections/Enterprise.svelte | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/src/lib/components/sections/Enterprise.svelte b/src/lib/components/sections/Enterprise.svelte index 2c159d9c..6bf368fc 100644 --- a/src/lib/components/sections/Enterprise.svelte +++ b/src/lib/components/sections/Enterprise.svelte @@ -5,9 +5,6 @@

Products

-

- Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. -

@@ -201,4 +198,4 @@ width: 100%; will-change: transform; } - \ No newline at end of file + From a42c2b32eb50cfe76d6939b4915724cdae281d20 Mon Sep 17 00:00:00 2001 From: s-illly Date: Wed, 20 Aug 2025 17:13:55 -0400 Subject: [PATCH 2/2] Sm screen testimonial carousel --- .../components/sections/Testimonials.svelte | 105 ++++++++++++++++-- 1 file changed, 97 insertions(+), 8 deletions(-) diff --git a/src/lib/components/sections/Testimonials.svelte b/src/lib/components/sections/Testimonials.svelte index cf5cb806..3357c536 100644 --- a/src/lib/components/sections/Testimonials.svelte +++ b/src/lib/components/sections/Testimonials.svelte @@ -1,4 +1,5 @@
-
-
+
+ +
+
+ {#each testimonials as testimonial, index} + {#if index === currentSlide} +
+
+

{testimonial.text}

+
+ {#if testimonial.image} +
+ {testimonial.author} +
+ {:else} +
+ + {testimonial.author[0]} + +
+ {/if} +
+
{testimonial.author}
+
{testimonial.role} {testimonial.company}
+
+
+
+
+ {/if} + {/each} +
+ + + + + + + +
+ {#each testimonials as _, index} + + {/each} +
+
+ + +