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

nv-ui-landing-page

v1.0.23

Published

UI components for landing pages

Downloads

42

Readme

UI Landing Page Components

Biblioteca de componentes reutilizáveis e layouts para landing pages da NV.

Instalação

npm install @nv/ui-landing-page

Uso Básico

import { Button, Card, ThemeProvider } from '@nv/ui-landing-page';

function App() {
  return (
    <ThemeProvider>
      <Card>
        <Button>Clique aqui</Button>
      </Card>
    </ThemeProvider>
  );
}

Layouts Reutilizáveis

import { DynamicSectionRenderer, type DynamicSection } from '@nv/ui-landing-page';

const sections: DynamicSection[] = [
  {
    id: 'hero',
    layout_type: 'layout1',
    order: 1,
    title: 'Bem-vindo',
    description: 'Sua descrição aqui',
    cards: []
  }
];

function MyLandingPage() {
  return <DynamicSectionRenderer sections={sections} />;
}

Layouts Disponíveis

Layouts Reutilizáveis

  • Layout1 - Seção Hero/História com grid de cards
  • Layout2 - Grid responsivo de cards com hover effects
  • Layout3 - Carousel horizontal de cards
  • Layout4 - Timeline vertical com alternância de cards
  • Layout5 - Cards horizontais com imagem e conteúdo
  • Layout6 - Cards centrados com design minimalista
  • DynamicSectionRenderer - Renderizador dinâmico de seções

Tipos

  • DynamicSection - Interface para seções dinâmicas
  • LayoutCard - Interface para cards dos layouts
  • LayoutProps - Props para componentes de layout
  • CompanyData - Interface para dados da empresa

Componentes Disponíveis

UI Components

  • Accordion
  • AlertDialog
  • Alert
  • AspectRatio
  • Avatar
  • Badge
  • Breadcrumb
  • Button
  • Calendar
  • Card
  • Carousel
  • Chart
  • Checkbox
  • Collapsible
  • Command
  • ContextMenu
  • Dialog
  • Drawer
  • DropdownMenu
  • Form
  • HoverCard
  • InputOTP
  • Input
  • Label
  • Menubar
  • NavigationMenu
  • Pagination
  • Popover
  • Progress
  • RadioGroup
  • Resizable
  • ScrollArea
  • Select
  • Separator
  • Sheet
  • Sidebar
  • Skeleton
  • Slider
  • Sonner
  • Switch
  • Table
  • Tabs
  • Textarea
  • Toast
  • Toaster
  • ToggleGroup
  • Toggle
  • Tooltip

Hooks

  • useMobile
  • useSearch
  • useToast
  • useCompanyData

Utils

  • cn (class name utility)

Desenvolvimento

# Instalar dependências
npm install

# Build
npm run build

# Desenvolvimento com watch
npm run dev

Estrutura

src/
├── components/
│   ├── ui/           # Componentes UI base
│   └── index.ts      # Exports dos componentes
├── hooks/            # Hooks customizados
├── lib/              # Utilitários
└── index.ts          # Export principal