From 16f107ed7853c41b967e388db1933fd6620879d4 Mon Sep 17 00:00:00 2001 From: bobbiejaxn Date: Thu, 16 Apr 2026 16:51:36 +0200 Subject: [PATCH] feat: add video walkthrough button to landing page (#128) --- src/app/Flash.jsx | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) diff --git a/src/app/Flash.jsx b/src/app/Flash.jsx index 18a650b6..c5284dda 100644 --- a/src/app/Flash.jsx +++ b/src/app/Flash.jsx @@ -343,6 +343,34 @@ function Stepper({ steps, currentStep, onStepClick }) { } // Landing page component + +function VideoWalkthrough() { + const [isOpen, setIsOpen] = useState(false) + if (!isOpen) { + return ( + + ) + } + return ( +
setIsOpen(false)} + > +
+
+

Video walkthrough — coming soon

+

Click anywhere to close

+
+
+
+ ) +} + function LandingPage({ onStart }) { return (
@@ -359,6 +387,7 @@ function LandingPage({ onStart }) { > Start +
) }