JSPM

  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • 0
  • Score
    100M100P100Q35245F
  • License MIT

Una librería de componentes UI conectada a Supabase Storage

Package Exports

  • cultureui-library
  • cultureui-library/dist/src/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (cultureui-library) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

🌈 Culture UI Library

LinkedIn GitHub

🚀 Instalación

npm install cultureui-library
# o
yarn add cultureui-library

📦 Requisitos

  • React 18+
  • TailwindCSS 3.x
  • PostCSS configurado (como cualquier proyecto con Tailwind)

✅ Los estilos se importan automáticamente..


🧩 Uso básico

import { AvatarStack, Modal } from "cultureui-library";

export default function MyComponent() {
  return (
    <div className="p-8">
      <AvatarStack
        people={[
          { image: "/img1.jpg", name: "Juli", role: "Dev" },
          { image: "/img2.jpg", name: "Marce", role: "UX" },
        ]}
      />
    </div>
  );
}

🎨 Los componentes están estilizados con TailwindCSS y no requieren configuración adicional.


🧱 Componentes disponibles

  • AvatarStack
  • Carousel
  • FloatingNavBar
  • Modal
  • SocialSelector
  • StatsWidget
  • MotionText
  • AnimatedTooltip
  • FAQAccordion
  • TestimonialSlider

⚙️ Configuración Tailwind

export default {
  content: [
    "./src/**/*.{js,ts,jsx,tsx}",
  ],
  theme: {
    extend: {},
  },
  plugins: [],
};

🧠 Autor

Creado por @julianvidela con ❤️.

LinkedIn GitHub