Switch display font from Atma to Bangers and update related imports and

This commit is contained in:
Riccardo Giorato
2025-12-28 13:13:52 +01:00
parent 0b65e78ea3
commit 6b19743950
6 changed files with 91 additions and 72 deletions
+3 -3
View File
@@ -27,10 +27,10 @@ export function StoryLoader({ text = "Loading story..." }: StoryLoaderProps) {
src={`/loader/${loaderSvgs[currentSvgIndex]}`}
alt="Loading..."
className="w-full h-full object-contain animate-pulse transition-all duration-700 ease-in-out transform"
style={{ filter: 'invert(1)' }}
style={{ filter: "invert(1)" }}
/>
</div>
<div className="text-white text-lg">{text}</div>
<div className="text-white text-2xl font-display">{text}</div>
</div>
);
}
}