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

@kushalsamant/design-template

v1.3.2

Published

Unified design system and component library for KVSHVL projects

Downloads

12

Readme

KVSHVL Design Template

A unified design system and component library based on the Awwwards-winning GKC Architecture & Design pattern. This template provides a consistent, professional design language for all KVSHVL projects.

Features

  • Minimal, Clean Aesthetic - Professional design with maximum impact
  • Dark Mode Support - System preference detection with manual toggle
  • Responsive Design - Mobile-first approach with excellent mobile experience
  • Accessibility - WCAG AAA compliant
  • Performance - Optimized animations and 60fps performance
  • Type-Safe - Full TypeScript support

Installation

As npm Package

npm install @kvshvl/design-template

As Git Submodule

git submodule add https://github.com/kushalsamant/kvshvl-design-template.git template

Quick Start

1. Install the Package

npm install @kvshvl/design-template

2. Import Styles

// app/layout.tsx or _app.tsx
import '@kvshvl/design-template/styles/globals.css'

3. Configure Your Site

// config/site.config.ts
import { createSiteConfig } from '@kvshvl/design-template/config'

export const siteConfig = createSiteConfig({
  name: 'Your Site Name',
  domain: 'yoursite.com',
  brandColors: {
    primary: '#9333EA',
    secondary: '#EC4899',
  },
  navigation: [
    { href: '/about', label: 'About' },
    { href: '/projects', label: 'Projects' },
  ],
})

4. Use Components

import { Hero, ProjectCard, Button } from '@kvshvl/design-template/components'

export default function Home() {
  return (
    <>
      <Hero
        title="Your Site Title"
        tagline="Supporting tagline"
        cta={{ label: 'Get Started', href: '/start' }}
      />
      <ProjectCard
        title="Project Name"
        description="Project description"
        image="/project.jpg"
        href="/projects/project"
      />
    </>
  )
}

Components

Layout Components

  • AppHeader - Sticky header with navigation and theme toggle
  • AppFooter - Footer with organized links and branding
  • ThemeProvider - Theme initialization and scroll animations

Content Components

  • Hero - Large hero section with title, tagline, and CTA
  • ProjectCard - Project/product showcase card
  • Card - General purpose card component
  • Button - Button with multiple variants
  • StatsDisplay - Statistics/metrics display
  • Testimonial - Quote/testimonial block
  • NewsCard - Blog/news article card
  • ClientGrid - Client/product logo grid

Utility Components

  • ThemeToggle - Dark/light/system theme toggle
  • MobileMenu - Mobile navigation menu
  • Section - Section wrapper with consistent spacing

Design System

Typography

  • Font Family: Inter (Google Fonts)
  • Headings: H1 (4rem-5rem), H2 (3rem-4rem), H3 (1.875rem)
  • Body: 1rem base size with relaxed line-height

Colors

  • Primary: #9333EA (Purple)
  • Secondary: #EC4899 (Pink)
  • Gradient: Primary to Secondary
  • Full dark mode support with system preference detection

Spacing

  • Generous spacing system: xs (8px) to 3xl (64px)
  • Section spacing: 4rem-6rem between major sections

Animations

  • Smooth transitions (150ms-500ms)
  • Scroll-triggered animations
  • Hover effects with elevation changes
  • Respects prefers-reduced-motion

Configuration

See CONFIGURATION.md for detailed configuration options.

Documentation

Automatic Updates

This template is designed to automatically update across all projects:

npm Package Method

  1. Update template repository
  2. Publish new version: npm version patch && npm publish
  3. Projects update: npm update @kvshvl/design-template
  4. Automated via Dependabot/Renovate

Git Submodule Method

  1. Update template repository
  2. Projects pull updates: git submodule update --remote
  3. Can be automated with GitHub Actions

License

See LICENSE file for details.

Support

For issues and questions, please open an issue in the template repository.