keyboard-driven navigation

Resolves #66
This commit is contained in:
talksik
2026-03-30 12:51:15 -07:00
parent 14285575e4
commit 086cf4f1ee
7 changed files with 188 additions and 40 deletions
@@ -37,7 +37,7 @@ function TextPreview({ particle }: { particle: Extract<Particle, { type: "text"
: particle.properties.content;
return (
<div className="flex h-full w-full items-center justify-center p-4">
<p className="line-clamp-4 text-center text-4xl leading-relaxed">
<p className="line-clamp-4 text-center text-xl leading-relaxed">
{truncated}
</p>
</div>
@@ -100,7 +100,7 @@ function VideoThumbnail({
}
return (
<div className="relative h-full w-full bg-black">
<div className="relative h-full w-full bg-black blur-[2px]">
<video
src={`${url}#t=2`}
preload="metadata"