npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@inova-library/inova-component-library

v1.0.8

Published

Una biblioteca de componentes en Next.js sin TypeScript.

Downloads

520

Readme

Mi Biblioteca de Componentes de Next.js

Bienvenido a mi primera biblioteca de componentes de Next.js. Esta biblioteca está diseñada para facilitar la creación de aplicaciones web modernas utilizando componentes reutilizables y estilizados con @emotion/styled.

Cabe detacar que este es una libreria de ejemplo que utilizo para uso personal, no es una librería para uso normal. Sin emargo, si deseas usarla espero que te sea útil en tus proyectos.

Puedes ver una implementación de estos componentes en: https://github.com/GlenderM04/testing-my-component-library

Características

  • Componentes Reutilizables: Incluye una variedad de componentes que puedes usar en tus proyectos Next.js.
  • Estilo Moderno: Utiliza @emotion/styled para estilos CSS en JS, lo que permite estilos dinámicos y fáciles de mantener.
  • Compatibilidad con Next.js: Diseñado específicamente para funcionar sin problemas con Next.js.

Instalación

Para instalar la biblioteca, utiliza npm o yarn:

npm install glenderm04-my-first-component-library@latest

o

yarn add glenderm04-my-first-component-library@latest

Componentes Disponibles

1. Header

Un componente de encabezado básico que se puede personalizar.

import { Header } from 'glenderm04-my-first-component-library@latest';

const MyApp = () => {
  return (
    <Header />
  );
};

2. Navbar

Un componente de barra de navegación que recibe una configuración JSON.

import { Navbar } from 'glenderm04-my-first-component-library@latest';

const navbarData = [
  { id: 1, label: 'Inicio', link: '/' },
  { id: 2, label: 'Acerca de', link: '/about' },
  { id: 3, label: 'Contacto', link: '/contact' },
];

const MyApp = () => {
  return (
    <Navbar items={navbarData} />
  );
};

3. Reloj Digital

Un componente que muestra un reloj digital y permite cambiar entre formato de 24h y 12h.

import { RelojDigital } from 'glenderm04-my-first-component-library@latest';

const MyApp = () => {
  return (
    <RelojDigital />
  );
};

4. Galería de Imágenes

Un componente que muestra imágenes en una cuadrícula 4x4 con scroll.

import { GaleriaDeImagenes } from 'glenderm04-my-first-component-library@latest';

const MyApp = () => {
  return (
    <GaleriaDeImagenes />
  );
};

5. Botón de Navegación

Un botón que redirige a una ruta específica usando el enrutador de Next.js.

import { BotonNavegacion } from 'glenderm04-my-first-component-library@latest';

const MyApp = () => {
  return (
    <BotonNavegacion route="/about" />
  );
};

Contribuciones

Si deseas contribuir a esta biblioteca, ¡estás más que bienvenido! Por favor, abre un issue o envía un pull request con tus sugerencias y mejoras.

Licencia

Este proyecto está bajo la Licencia MIT.