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 🙏

© 2026 – Pkg Stats / Ryan Hefner

gwan-design-system

v0.1.17

Published

✨ A reusable component library for Next.js projects.

Readme

⚡ Gwan Design System – A Component Library for Next.js ⚡

npm

🧪 Reusable, composable, and beautifully crafted UI components built with 💚 Next.js — supercharge your apps in minutes!

📦 What is Gwan Design System?

Gwan Design System is a plug-and-play React component library tailored specifically for Next.js projects. Whether you're building a SaaS dashboard, marketing site, or internal tool — we've got you covered.

  • ⚡ Built with Next.js App Router
  • 🎨 Pre-styled, customizable components
  • 🧱 Fully typed with TypeScript
  • 💅 Styled with Tailwind CSS
  • 🧪 Accessible and production-ready

🚀 Getting Started

📥 Installation

Install via npm: npm install gwan-design-system

or with Yarn: yarn add gwan-design-system

🧰 Usage

Include this in your tailwind.config.ts

content: [
  "./src/app/**/*.{js,ts,jsx,tsx,mdx}",
  "./src/templates/**/*.{js,ts,jsx,tsx,mdx}",
  join(
    dirname(require.resolve("gwan-design-system")),
    "**/*.{js,ts,jsx,tsx,mdx}"
  ),
],

Define your custom theme in your tailwind.config.ts

theme: {
  extend: {
    colors: {
      primary: {
        50: "#F2F3EE",
        100: "#E1E3DA",
        200: "#D0D3C6",
        300: "#BEC3B2",
        400: "#ADB39E",
        500: "#9EA593",
        600: "#8C9382",
        700: "#787D6E",
        800: "#64675A",
        900: "#505146",
      },
      neutral: {...},
      green: {...},
      red: {...},
      blue: {...},
      yellow: {...}
    }
  }
}

Import any component and use it right away!

"use client";

import { Button, BUTTON_VARIANTS } from "gwan-design-system";

export default function HomePage() {
  return (
    <main className="p-10">
      <h1 className="text-2xl font-bold mb-6">👋 Welcome to Gwan UI</h1>
        <Button
          variant={BUTTON_VARIANTS.PRIMARY}
          label="Primary"
          onClick={() => handleClick()}
        />
    </main>
  );
}

🧱 Components

  • 🔘 Buttons
  • 🟣 Modals
  • 🧾 Tables
  • ✅ Checkboxes
  • ☑️ Radio Buttons
  • 📥 File Uploader
  • 📦 Cards
  • 🎛 Dropdowns
  • 📊 Pagination
  • 📎 Tags
  • 🧠 States (Empty, Error, Loading, etc.)
  • 🔔 Snackbar
  • ✨ Tooltips
  • 🧭 Navigation Bars
  • ...and more!

    Want to see all available components? Visit 👉 gwan-design-system official website.

🛠 Customization

All components are styled using Tailwind CSS. You can easily override styles using your own Tailwind theme or utility classes.

<Button className="bg-purple-600 hover:bg-purple-700 text-white" />

🤝 Contributing

I welcome contributions via pull requests!
However, to keep the project stable and secure:

🔒 Direct pushes to the main branch are not allowed
✅ All changes must go through a pull request
👀 Pull requests require review and approval before merging

Want to contribute? Fork this 👉 repository

  • Create a feature branch: git checkout -b feature/my-feature
  • Commit your changes and push: git push origin feature/my-feature
  • Open a pull request with a clear description

Thanks for helping improve the project! 🙌

✨ Show Some Love

If you like this library:

  • ⭐ Star this repo on GitHub
  • 🧑‍💻 Use it in your projects
  • 🐛 Submit bugs or improvements
  • 🥳 Share with the community

📦 Coming Soon

  • 🔌 Dark mode support
  • 🎨 Theming system
  • 📚 Storybook documentation
  • 🧩 Component playground