From d7809313558d9f10b353e3935d62222945db0af1 Mon Sep 17 00:00:00 2001 From: Bartosz Kaszubowski Date: Wed, 7 Jan 2026 17:49:42 +0100 Subject: [PATCH] Home: improve watch tiles --- website/src/components/Home/Watch/index.tsx | 72 ++++++++++++++----- .../components/Home/Watch/styles.module.css | 30 ++++++-- website/src/css/customTheme.scss | 2 +- 3 files changed, 78 insertions(+), 26 deletions(-) diff --git a/website/src/components/Home/Watch/index.tsx b/website/src/components/Home/Watch/index.tsx index 900a823f5a6..26c72d5942e 100644 --- a/website/src/components/Home/Watch/index.tsx +++ b/website/src/components/Home/Watch/index.tsx @@ -5,7 +5,7 @@ * LICENSE file in the root directory of this source tree. */ -import React from 'react'; +import {useState} from 'react'; import Section from '../Section'; import SectionTitle from '../SectionTitle'; @@ -13,6 +13,8 @@ import SectionTitle from '../SectionTitle'; import styles from './styles.module.css'; function Watch() { + const [playingId, setPlayingId] = useState(null); + return (
-
-