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

@trinkui/react

v0.0.6

Published

Landing page UI components for React

Readme


Install

npm install @trinkui/react

Quick Example

import {
  NavbarSimple,
  HeroCentered,
  FeaturesGrid,
  PricingCards,
  CTACentered,
  FooterColumns,
} from "@trinkui/react";

export default function LandingPage() {
  return (
    <>
      <NavbarSimple
        brandName="MyProduct"
        links={[{ label: "Features", href: "#features" }]}
        primaryAction={{ label: "Get Started", href: "/signup" }}
      />
      <HeroCentered
        title="Ship faster with trink-ui"
        subtitle="Production-ready components for React landing pages."
        primaryAction={{ label: "Get Started", href: "/signup" }}
        secondaryAction={{ label: "Learn More", href: "#features" }}
      />
      <FeaturesGrid
        title="Everything you need"
        features={[
          { icon: "⚡", title: "Fast", description: "Optimized for performance" },
          { icon: "🎨", title: "Beautiful", description: "Designed with care" },
          { icon: "♿", title: "Accessible", description: "Built for everyone" },
        ]}
      />
      <PricingCards
        title="Simple pricing"
        tiers={[
          { name: "Free", price: "$0", features: ["3 projects", "Community support"] },
          { name: "Pro", price: "$29", features: ["Unlimited", "Priority support"], highlighted: true },
        ]}
      />
      <CTACentered
        title="Ready to get started?"
        primaryAction={{ label: "Start Free", href: "/signup" }}
      />
      <FooterColumns brandName="MyProduct" copyright="© 2026" />
    </>
  );
}

Components

Primitives (38)

Accordion, Alert, Autocomplete, Avatar, Badge, Breadcrumbs, Button, Calendar, Card, Checkbox, Chip, CircularProgress, Code, DatePicker, Divider, Drawer, Dropdown, Form, Image, Input, InputOTP, Kbd, Link, Listbox, Modal, NumberInput, Pagination, Popover, Progress, RadioGroup, ScrollShadow, Select, Skeleton, Slider, Snippet, Spacer, Spinner, Switch, Table, Tabs, Textarea, Toast, Tooltip, User

Sections (11 components, 25 variants)

| Section | Variants | |---------|----------| | Hero | Centered, Split, Minimal | | Features | Grid, Alternating, List | | Pricing | Cards, Table | | Testimonials | Grid, Featured | | CTA | Banner, Centered, Split | | Stats | Grid, Banner | | FAQ | Accordion, Grid | | Navbar | Simple, Sticky | | Footer | Simple, Columns | | Logo Cloud | Standard, Marquee | | Newsletter | Banner, Split |

Animation Wrappers

FadeIn, SlideUp, StaggerChildren, ScaleIn, BlurIn

Layout

Container, Section, SectionHeader

Hooks

useMediaQuery, useDebounce, useClickOutside, useLocalStorage, useCopyToClipboard

Theming

All colors use CSS custom properties. Override to match your brand:

:root {
  --trinkui-primary: 0 111 238;
  --trinkui-bg: 255 255 255;
  --trinkui-fg: 10 10 10;
}

.dark {
  --trinkui-primary: 51 142 247;
  --trinkui-bg: 9 9 11;
  --trinkui-fg: 250 250 250;
}

Per-Section Theming

<HeroCentered theme="dark" title="Dark section" />
<FeaturesGrid theme="light" title="Light section" />

Built-in Presets

Ocean, Emerald, Rose, Amber, Violet, Slate

8 Landing Page Templates

Ready-to-use full-page templates: SaaS, Agency, Product Launch, AI/ML, Mobile App, Startup, Portfolio, Event

Requirements

  • React 18 or 19
  • Tailwind CSS v4

Links

License

MIT