Components
Loading preview...
Create a "Hello" writing effect inspired by Apple using Motion for React.
npx shadcn@latest add https://21st.dev/r/ncdai/apple-hello-effectimport { AppleHelloEnglishEffect } from "@/components/ui/apple-hello-effect";
const AppleHelloEffectDemo = () => {
return (
<div className="flex w-full h-screen flex-col justify-center items-center gap-16">
<AppleHelloEnglishEffect speed={1.1} />
</div>
);
};
export { AppleHelloEffectDemo };