-
diff --git a/src/components/Layout/HomeContent.js b/src/components/Layout/HomeContent.js index f9b785db420..a94e46dbadb 100644 --- a/src/components/Layout/HomeContent.js +++ b/src/components/Layout/HomeContent.js @@ -297,9 +297,9 @@ export function HomeContent() {
People expect web app pages to load fast. On the server, React lets you start streaming HTML while you’re still @@ -383,9 +383,9 @@ export function HomeContent() {
People expect native apps to look and feel like their platform.{' '} @@ -1620,8 +1620,6 @@ function Thumbnail({video}) { href={video.url} target="_blank" rel="noreferrer" - aria-hidden="true" - tabIndex={-1} className={cn( 'outline-link dark:outline-link outline-offset-2 aspect-video w-32 xs:w-36 select-none flex-col shadow-inner-border rounded-lg flex items-center overflow-hidden justify-center align-middle text-white/50 bg-cover bg-white bg-[conic-gradient(at_top_right,_var(--tw-gradient-stops))]', image === 'blue' && 'from-yellow-50 via-blue-50 to-purple-60', @@ -1637,6 +1635,7 @@ function Thumbnail({video}) { ? 'url(' + image + ')' : null, }}> + {video.title} {typeof image !== 'string' ? ( <>
-