Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/lib/components/marketing/testimonials.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@
>
{#each testimonials as testimonial}
<div
class="flex h-fit w-[90vw] flex-col justify-center rounded-2xl bg-white p-6 transition-all md:w-lg"
class="flex min-h-52 w-[90vw] flex-col justify-between rounded-2xl bg-white p-6 transition-all md:w-lg"
aria-hidden={i < testimonials.length - 1}
>
<p class="text-sub-body text-secondary flex-1 font-medium">
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/product-pages/testimonials.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
>
{#each testimonials as testimonial}
<div
class="flex h-fit w-[90vw] flex-col justify-center rounded-2xl bg-white p-6 transition-all md:w-lg"
class="flex min-h-52 w-[90vw] flex-col justify-between rounded-2xl bg-white p-6 transition-all md:w-lg"
>
<p class="text-sub-body text-secondary flex-1 font-medium">
{testimonial.copy}
Expand Down
12 changes: 6 additions & 6 deletions src/routes/products/functions/(components)/Testimonials.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -3,21 +3,21 @@
{
name: 'Ryan O’Conner',
copy: `The switch to using Appwrite brought infinite value that I'm still discovering today, but a major impact that it made was the amount of time and stress that it saved me as it simply just works.`,
image: '/images/testimonials/k-collect.png',
image: '/images/testimonials/ryan-oconner.png',
title: 'Founder',
company: 'K-Collect'
},
{
name: 'David Forster',
copy: `We really loved working with Appwrite for launching our bootstrapped "Open Mind" App. I am still surprised how easy the implementation into Flutter was.`,
image: '/images/testimonials/open-mind.png',
image: '/images/testimonials/david-forster.png',
title: 'Founder',
company: 'Open Mind'
},
{
name: 'Marius Bolik',
copy: `The integrated user authentication and the ease of creating data structures have undoubtedly saved us several weeks' worth of time.`,
image: '/images/testimonials/shoefitter.png',
image: '/images/testimonials/marius-bolik2.png',
title: 'CTO',
company: 'mySHOEFITTER'
},
Expand Down Expand Up @@ -47,11 +47,11 @@

<div class="group relative my-20 w-full overflow-clip">
<div
class="animate-scroll-x light flex w-max gap-4 pl-4 [animation-duration:80s] group-hover:[animation-play-state:paused]"
class="animate-scroll-x light flex w-max gap-8 pl-8 [animation-duration:80s] group-hover:[animation-play-state:paused]"
>
{#each testimonials as testimonial}
<div
class="flex h-fit w-lg flex-col justify-center rounded-2xl bg-white p-6 transition-all"
class="flex min-h-52 w-[90vw] flex-col justify-between rounded-2xl bg-white p-6 transition-all md:w-lg"
>
<p class="text-sub-body text-secondary flex-1 font-medium">
{testimonial.copy}
Expand All @@ -77,7 +77,7 @@
{#each testimonials as testimonial}
<div
aria-hidden="true"
class="flex h-fit w-lg flex-col justify-center rounded-2xl bg-white p-6 transition-all"
class="flex min-h-52 w-[90vw] flex-col justify-between rounded-2xl bg-white p-6 transition-all md:w-lg"
>
<p class="text-sub-body text-secondary flex-1 font-medium">
{testimonial.copy}
Expand Down