From d3b59ea2692c7bef130b8a6d1f0fbffa648c1436 Mon Sep 17 00:00:00 2001 From: Wojtek Majewski Date: Thu, 6 Nov 2025 13:55:32 +0100 Subject: [PATCH] refactor: update testimonial data with new testimonials and correct author/source info --- .../src/components/TestimonialCarousel.astro | 268 ++++++++++-------- pkgs/website/src/content/docs/index.mdx | 4 +- pkgs/website/src/styles/global.css | 5 +- 3 files changed, 157 insertions(+), 120 deletions(-) diff --git a/pkgs/website/src/components/TestimonialCarousel.astro b/pkgs/website/src/components/TestimonialCarousel.astro index 57f9b5fb6..b1761b2e1 100644 --- a/pkgs/website/src/components/TestimonialCarousel.astro +++ b/pkgs/website/src/components/TestimonialCarousel.astro @@ -1,185 +1,227 @@ --- +const heroTestimonial = { + author: 'cpursley', + source: 'Discord', + message: + 'Got a flow up and running, this is bad ass. I love that everything just goes into Postgres.', +}; + const testimonials = [ { - author: 'Revolutionary-Fact28', - source: 'Reddit', + author: 'nel', + source: 'Discord', message: - 'This looks amazing! I built a system on edge functions but it was very complicated and took so much time. I will probably switch to this.', + 'EdgeWorker is clearly a building block missing from supabase. I toyed with it locally for several days and it worked great.', }, { - author: 'CjHuber', - source: 'Hacker News', + author: 'Alipio Pereira', + source: 'Discord', message: - 'Exactly what I was looking for without even knowing it. Thank you for saving me tons of time in my project.', + "I'm really enjoying PQFlow — this is incredibly powerful! I'm implementing it in a flow with RAG.", }, { - author: 'bctreehugger', - source: 'Reddit', + author: 'Jie', + source: 'Discord', message: - 'Amazing work on taking the initiative to build this out. Watching closely and looking forward to using it once my project has a need for it.', + "I've been through hell and back with Airflow, Windmill, Inngest, etc and to be honest i haven't find anything I really love yet.", }, { - author: 'bota01', + author: '_perhaps', + source: 'Discord', + message: + 'I was for a while now feeling like there had to be a better way of handling workflows on a supabase project without needing to add something like inngest or n8n to my tech stack. It clicked really hard when I found out about your project', + }, + { + author: 'TapTap2121', source: 'Reddit', message: - "This is very needed and the product looks nice. Can't wait for it to be production ready.", + "I was searching through the docs for something like this and I'm quite surprised it's not part of Supabase already. A queue feels kinda useless with serverless runners if I need to trigger them manually", }, { - author: 'Danish', - source: 'Discord', - message: 'Waiting for your amazing work to be production ready!', + author: 'Revolutionary-Fact28', + source: 'Reddit', + message: + 'I built a system to this on edge functions but it was very complicated and took so much time this will be amazing! I will be probably switch to this.', }, { - author: 'tomaspozo_', - source: 'Discord', - message: 'This sounds awesome! Looking forward to see it.', + author: 'CjHuber', + source: 'Hacker News', + message: + 'Exactly what I was looking for without even knowing it :) well I knew I need smt like this, but I thought I\'d had to build a very rudimentary version myself. Thank you for saving me tons of time', }, { - author: 'homj', + author: 'enciso', source: 'Discord', - message: "Sounds good, I'm looking forward to it!", + message: + 'I was trying to build my own after having a couple of pgmq queues... you found a problem and you are giving a very good solution', }, ]; - -// Duplicate testimonials for seamless infinite scroll -const duplicatedTestimonials = [...testimonials, ...testimonials]; --- -