BuouNext
  • Features
  • DocumentsNew
  • BrutalUINew
  • ShowcaseHot
  • Pricing
  • Blog

    Getting Started

    Introduction

    BuouNext Instruction

    InstallationRun BuouNextProject StructureComponentsAuthenticationEmailAPI CallsDatabasePaymentSEO OptimizationHeadless CMSContact

    AI Instruction

    AI ImageNewAI ChatbotNewAI SearchNewAI NotionNew

    Components

    Super ClockNewFloating DockNewAI Image CompareNewAvatar ListNewClockNewDarkModeNewStepperNewRotation AvatarNewButton with TrailNewDotNewGridNewCounter CardNewMarquee CardNewProfile CardNewBento gridNewBorder Trail CardNewBuouNext FeaturesNewColor CardNewMouse FollowingNewColor GridNewAnimotion In View CardNewLevitate CardNewReorder CardNewGenerate TextNewSmooth Fliping NumberNewSmooth Fliping TextNewSmooth Typing TextNewTyping TextNewWindow Typing TextNewFade In OutNewText DropNewScalingNew
    Docs
    Smooth Typing Text

    Smooth Typing Text

    Displays a beautiful Smooth Typing Text.

    Loading...

    Installation

    Install the following dependencies:

    npm install framer-motion

    Copy and paste the cn util code into your project.

    import { ClassValue, clsx } from "clsx"
    import { twMerge } from "tailwind-merge"
     
     
    export function cn(...inputs: ClassValue[]) {
      return twMerge(clsx(inputs))
    }
     

    Copy and paste the Typing Text code into your project.

    API Reference

    Props

    PropTypeDescription
    wordsstringGenerate text words.
    classNamestringAdditional classes for the Text.
    cursorClassNamestringAdditional classes for the cursor.

    Usage

    export function TypewriterEffectSmoothDemo() {
      const words = [
        {
          text: "Build",
        },
        {
          text: "animation",
        },
        {
          text: "smooth",
        },
        {
          text: "typing",
        },
        {
          text: "text.",
        },
      ]
      return (
        <div className="flex flex-col items-center justify-center h-[20rem]  ">
          <TypewriterEffectSmooth words={words} />
        </div>
      )
    }
    Smooth Fliping TextTyping Text
    Build 
    smooth 
    typing 
    text.