fix: front page font

This commit is contained in:
Kisuyo
2024-09-07 19:12:25 +02:00
parent dccb144792
commit 3bff1c4b21

View File

@@ -5,7 +5,7 @@ export default function TextBlurTransition(props: { children: string; className?
const words = props.children.split(" ") const words = props.children.split(" ")
return ( return (
<motion.div className={cn("flex w-full flex-wrap justify-center gap-3 transition-all", props.className)}> <motion.div className={cn("flex w-full justify-center gap-3 transition-all", props.className)}>
{words.map((word, index) => { {words.map((word, index) => {
return ( return (
<motion.div <motion.div