diff --git a/pkgs/website/src/components/CodeOverlay.astro b/pkgs/website/src/components/CodeOverlay.astro new file mode 100644 index 000000000..a2a4da3d3 --- /dev/null +++ b/pkgs/website/src/components/CodeOverlay.astro @@ -0,0 +1,490 @@ +--- +// CodeOverlay.astro - Manages the code reveal overlay with scroll animation +--- + +
+
+
200+ lines of boilerplate
+
+ 🔧 Queue setup & configuration
+ 🔄 Worker management & polling
+ 📦 Message handling & state tracking
+ ❌ Error handling & retries
+ 🔗 Manual step coordination +
+ +
+
+ + + + diff --git a/pkgs/website/src/components/TestimonialCarousel.astro b/pkgs/website/src/components/TestimonialCarousel.astro index 445240e36..4ced0744f 100644 --- a/pkgs/website/src/components/TestimonialCarousel.astro +++ b/pkgs/website/src/components/TestimonialCarousel.astro @@ -40,217 +40,145 @@ const testimonials = [ message: "Sounds good, I'm looking forward to it!", }, ]; + +// Duplicate testimonials for seamless infinite scroll +const duplicatedTestimonials = [...testimonials, ...testimonials]; ---