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

@victusvinceere/saas-landing

v0.1.1

Published

Landing page components for SaaS Kit

Readme

@victusvinceere/saas-landing

Landing page and marketing components for SaaS applications.

Installation

pnpm add @victusvinceere/saas-landing

Components

Navbar

Navigation bar with brand, links, and CTA button.

import { Navbar } from "@victusvinceere/saas-landing/components";

<Navbar
  brand="MySaaS"
  links={[
    { label: "Features", href: "#features" },
    { label: "Pricing", href: "#pricing" },
    { label: "FAQ", href: "#faq" },
  ]}
  cta={{ label: "Get Started", href: "#waitlist" }}
/>

Hero

Hero section with badge, title, description, and CTAs.

import { Hero } from "@victusvinceere/saas-landing/components";

<Hero
  badge="Now in Beta"
  title="Your Amazing"
  highlight="Product"
  description="The best solution for your needs."
  primaryCta={{ label: "Get Started", href: "#waitlist" }}
  secondaryCta={{ label: "Learn More", href: "#features" }}
/>

Features

Feature grid with icons and descriptions.

import { Features } from "@victusvinceere/saas-landing/components";

<Features
  title="Features"
  subtitle="Everything you need to succeed"
  features={[
    {
      icon: "Zap",
      title: "Lightning Fast",
      description: "Built for speed and performance.",
    },
    {
      icon: "Shield",
      title: "Secure",
      description: "Enterprise-grade security.",
    },
  ]}
/>

Pricing

Pricing plans with feature lists.

import { Pricing } from "@victusvinceere/saas-landing/components";

<Pricing
  title="Simple Pricing"
  subtitle="Choose your plan"
  plans={[
    {
      name: "Starter",
      price: 29,
      period: "mo",
      description: "For individuals",
      features: ["Feature 1", "Feature 2"],
      cta: { label: "Get Started", href: "#" },
      highlighted: false,
    },
    {
      name: "Pro",
      price: 79,
      period: "mo",
      description: "For teams",
      features: ["Everything in Starter", "Feature 3"],
      cta: { label: "Get Started", href: "#" },
      highlighted: true,
    },
  ]}
/>

Faq

Accordion FAQ section.

import { Faq } from "@victusvinceere/saas-landing/components";

<Faq
  title="Frequently Asked Questions"
  subtitle="Everything you need to know"
  items={[
    {
      question: "What is this product?",
      answer: "It's the best SaaS solution.",
    },
    {
      question: "How much does it cost?",
      answer: "Plans start at $29/month.",
    },
  ]}
/>

Testimonials

Customer testimonials in a grid layout.

import { Testimonials } from "@victusvinceere/saas-landing/components";

<Testimonials
  title="What Our Customers Say"
  subtitle="Don't just take our word for it"
  testimonials={[
    {
      quote: "This product changed everything for us!",
      author: "Jane Smith",
      role: "CEO",
      company: "TechCorp",
      initial: "J",
      color: "from-blue-400 to-blue-600",
    },
    {
      quote: "The best investment we've made.",
      author: "John Doe",
      role: "CTO",
      company: "StartupXYZ",
      image: "/avatars/john.jpg", // Or use initial/color
    },
  ]}
/>

Waitlist

Email capture form with optional business type selector.

import { Waitlist } from "@victusvinceere/saas-landing/components";

<Waitlist
  title="Join the Waitlist"
  description="Be the first to know when we launch."
  badge="Early Access"
  submitText="Join Waitlist"
  successMessage="You're on the list!"
  endpoint="/api/waitlist"
  showBusinessType={true}
  businessTypes={[
    { value: "startup", label: "Startup" },
    { value: "enterprise", label: "Enterprise" },
  ]}
  tracking={{
    onFormStart: () => console.log("Form started"),
    onSubmit: (success, businessType) => console.log("Submitted", success),
  }}
/>

Cta

Call-to-action section.

import { Cta } from "@victusvinceere/saas-landing/components";

<Cta
  title="Ready to get started?"
  description="Join thousands of happy customers."
  cta={{ label: "Start Free Trial", href: "/signup" }}
/>

Footer

Footer with brand and links.

import { Footer } from "@victusvinceere/saas-landing/components";

<Footer
  brand="MySaaS"
  links={[
    { label: "Privacy", href: "/privacy" },
    { label: "Terms", href: "/terms" },
    { label: "Contact", href: "mailto:[email protected]" },
  ]}
  copyright="© 2024 MySaaS. All rights reserved."
/>

Full Page Example

"use client";

import {
  Navbar,
  Hero,
  Features,
  Pricing,
  Faq,
  Testimonials,
  Waitlist,
  Footer,
} from "@victusvinceere/saas-landing/components";
import { siteConfig } from "@/config/site";

export default function LandingPage() {
  return (
    <div className="min-h-screen">
      <Navbar
        brand={siteConfig.name}
        links={siteConfig.navigation}
        cta={{ label: "Get Started", href: "#waitlist" }}
      />

      <Hero
        badge={siteConfig.hero.badge}
        title={siteConfig.hero.title}
        highlight={siteConfig.hero.highlight}
        description={siteConfig.hero.description}
        primaryCta={siteConfig.hero.cta.primary}
        secondaryCta={siteConfig.hero.cta.secondary}
      />

      <Features
        title="Features"
        subtitle="Everything you need"
        features={siteConfig.features}
      />

      <Pricing
        title={siteConfig.pricing.title}
        subtitle={siteConfig.pricing.subtitle}
        plans={siteConfig.pricing.plans}
      />

      <Testimonials
        title="What Customers Say"
        testimonials={siteConfig.testimonials}
      />

      <Faq
        title="FAQ"
        items={siteConfig.faq}
      />

      <Waitlist
        title={siteConfig.waitlist.title}
        description={siteConfig.waitlist.description}
        badge={siteConfig.waitlist.badge}
        submitText={siteConfig.waitlist.submitText}
        businessTypes={siteConfig.waitlist.businessTypes}
      />

      <Footer
        brand={siteConfig.name}
        links={siteConfig.footer.links}
        copyright={`© ${new Date().getFullYear()} ${siteConfig.name}`}
      />
    </div>
  );
}

TypeScript Types

All components export their prop types:

import type {
  NavbarProps,
  NavLink,
  HeroProps,
  FeaturesProps,
  Feature,
  PricingProps,
  PricingPlan,
  FaqProps,
  FaqItem,
  TestimonialsProps,
  Testimonial,
  WaitlistProps,
  CtaProps,
  FooterProps,
  FooterLink,
} from "@victusvinceere/saas-landing/components";

Styling

Components use Tailwind CSS and CSS variables for theming. Make sure your tailwind.config.js includes the package:

module.exports = {
  content: [
    "./src/**/*.{js,ts,jsx,tsx}",
    "./node_modules/@victusvinceere/saas-landing/dist/**/*.{js,mjs}",
  ],
  // ...
};

License

MIT