"use client";
import { cn } from "@/lib/utils";
import { AnimationProps, motion } from "framer-motion";
import React from "react";
export function TextAnimationBlurFadeInDemo() {
return (
Animations that stand out from the rest.
Appearing text sets aside the text from the rest, it is a great way to
make the text more engaging and interesting.
Get Started
Learn More
);
}
const Text = ({
children,
className,
delay = 0,
...animationProps
}: {
children: string;
className?: string;
delay?: number;
} & AnimationProps) => {
return (
{children.split(" ").map((word, index) => (
{word}
))}
);
};