From a2c323191e242fb40a53ce365e2cb0c9670a1107 Mon Sep 17 00:00:00 2001 From: sasha-astiadi Date: Fri, 12 Sep 2025 22:18:00 +0200 Subject: [PATCH] ook --- src/components/ClickableGallery.tsx | 48 ++++++++++++++++++++--------- 1 file changed, 34 insertions(+), 14 deletions(-) diff --git a/src/components/ClickableGallery.tsx b/src/components/ClickableGallery.tsx index b81f019..7cf6be2 100644 --- a/src/components/ClickableGallery.tsx +++ b/src/components/ClickableGallery.tsx @@ -49,17 +49,36 @@ export function ClickableGallery() { const prev = () => setActive((i) => wrap(0, galleryItems.length, i - 1)) return ( -
setHovering(true)} - onMouseLeave={() => setHovering(false)} - > - {/* Soft edge fades */} -
-
+ <> +
+ + One Agent, Endless Possibilities. + + + The future isn’t about more tools — it’s about one intelligent partner that can do it all. This is your gateway to creativity, automation, and discovery. + +
+
setHovering(true)} + onMouseLeave={() => setHovering(false)} + > + {/* Soft edge fades */} +
+
-
-
+
+
{indices.map((idx, i) => { const distance = i - VISIBLE @@ -69,7 +88,7 @@ export function ClickableGallery() { const z = -Math.abs(distance) * DEPTH const r = distance * ROT_Y const s = 1 - Math.abs(distance) * SCALE_DROP - const o = distance === 0 ? 1 : 0.85 + const o = distance === 0 ? 1 : 0.90 const zIndex = 100 - Math.abs(distance) return ( @@ -112,7 +131,7 @@ export function ClickableGallery() { className="bg-white/70 hover:bg-white rounded-full p-3 shadow-lg backdrop-blur-md" aria-label="Previous" > - + ' }} />
@@ -121,14 +140,14 @@ export function ClickableGallery() { className="bg-white/70 hover:bg-white rounded-full p-3 shadow-lg backdrop-blur-md" aria-label="Next" > - + ' }} />
{/* Foreground pill */}
-

+

{galleryItems[active].text}

+ ) }