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

@plumber-ai/modern-template

v1.0.5

Published

Modern professional plumbing website template - Generated by Plumber AI

Downloads

11

Readme

@plumber-ai/modern-template

🔧 Modern Professional Plumbing Website Template

A beautiful, responsive, and conversion-optimized website template specifically designed for plumbing businesses. Generated by Plumber AI.

🚀 Features

  • Modern Design: Clean, professional appearance that builds trust
  • Mobile Responsive: Perfect on all devices
  • SEO Optimized: Built-in best practices for search engines
  • Conversion Focused: Strategic placement of CTAs and contact forms
  • TypeScript: Full type safety and better developer experience
  • Next.js: Server-side rendering for blazing fast performance

📦 Installation

npm install @plumber-ai/modern-template

🛠️ Usage

Basic Import

import { ModernTemplate, templateData } from "@plumber-ai/modern-template";
import type { DesignTokens } from "@plumber-ai/modern-template/types";

export default function PlumbingWebsite() {
  return <ModernTemplate data={templateData} />;
}

Individual Components

import { Hero, Services, ContactForm } from "@plumber-ai/modern-template";

export default function CustomLayout() {
  return (
    <div>
      <Hero data={data.hero} designTokens={data.designTokens} />
      <Services data={data.services} designTokens={data.designTokens} />
      <ContactForm data={data.contact} designTokens={data.designTokens} />
    </div>
  );
}

TypeScript Support

import type {
  DesignTokens,
  HeroData,
  ServicesData,
  ContactData,
} from "@plumber-ai/modern-template/types";

const customData: DesignTokens = {
  // Your custom data
};

🎨 Available Components

  • ModernTemplate - Complete template wrapper
  • Hero - Eye-catching header with CTA
  • Header - Navigation with logo and phone
  • Services - Service offerings grid
  • SpecialOffers - Promotional sections
  • AreasServed - Service area coverage
  • Commitment - Value propositions
  • MascotCTA - Character-driven call-to-action
  • WhyWait - Urgency-driven conversion section
  • ContactForm - Lead capture form
  • ContactFooter - Contact information
  • Footer - Site footer with links

🔧 Customization

The template is fully customizable through the DesignTokens interface:

const customTokens: DesignTokens = {
  businessName: "Your Plumbing Co",
  phoneNumber: "(555) 123-4567",
  colors: {
    primary: "#2563eb",
    secondary: "#1e40af",
    accent: "#f59e0b",
  },
  fonts: {
    heading: "Inter",
    body: "Inter",
  },
  // ... more customization options
};

📱 Next.js Configuration

Add to your next.config.js:

/** @type {import('next').NextConfig} */
const nextConfig = {
  transpilePackages: ["@plumber-ai/modern-template"],
};

module.exports = nextConfig;

🤝 Support

📄 License

MIT License - see LICENSE file for details.


Made with ❤️ by Plumber AI - Helping plumbers build better websites faster.