Docs
3D Logo Particles

3D Logo Particles

Displays a beautiful 3D Logo Particles.

Make your websites more modern by BuouUI

Installation

Copy and paste the Event Calendar code into your project.

API Reference

Props

PropTypeDescription
textstring-
maxSpeednumber50
fontSizenumber120
mobileFontSizenumber60
fontFamilystring'sans-serif'
particleColorstring'white'
scatteredColorstring'#00DCFF'
interactionDistancenumber240
particleCountnumber7000
backgroundColorstring'black'
fontWeightstring'bold'
childrenReact.ReactNode-

Usage

export default function Demo() {
  return (
    <ParticleText text="BuouUI" maxSpeed={60} scatteredColor="#00DCFF">
      <p className="font-mono text-gray-400 text-xs sm:text-base md:text-sm">
        Explore{" "}
        <a
          href="#"
          className="text-gray-300 hover:text-cyan-400 transition-colors duration-300"
        >
          BuouUI
        </a>{" "}
        for modern interfaces
      </p>
    </ParticleText>
  )
}