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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@windstream/business-components

v0.0.4

Published

Windstream business components library for header and footer

Readme

Windstream Business Components

React component library containing Windstream's business components for header and footer, matching the official Windstream Business website design.

Components

Header Component

  • Main navigation header with responsive design
  • Desktop and mobile layouts
  • Features:
    • Customer service number display
    • Contact number
    • My Account button
    • Navigation menu with dropdowns
    • Offers section with notification dot
    • Gradient call-to-action button
    • Mobile burger menu

Footer Component

  • Comprehensive footer with responsive design
  • Three main sections:
    1. Main Links Section
      • 6-column grid layout on desktop
      • Collapsible sections on mobile
      • Categories: Services, Industries, Resources, Company, Contact Us, Other Links
      • Interactive hover states
    2. Legal Links Section
      • Horizontal layout with separators on desktop
      • Row format with pipe separators on mobile
      • Social media icons (LinkedIn, Facebook, YouTube)
      • Copyright text
    3. Disclaimer Section
      • Legal text with proper typography
      • Responsive padding and spacing

Installation

npm install @windstream/business-components

Usage

import { Header, Footer } from '@windstream/business-components'

// Header Component
<Header 
  customerServiceNumber="1-833-241-0100"
  callNowNumber="1-855-439-2889"
  onPhoneClick={() => {}}
  onMyAccountClick={() => {}}
/>

// Footer Component
<Footer />

Development

# Install dependencies
npm install

# Start the development server
npm run dev

# Build the library
npm run build

File Structure

packages/
├── business/
│   ├── src/
│   │   ├── components/
│   │   │   ├── footer/
│   │   │   │   ├── index.tsx
│   │   │   │   ├── main-links/
│   │   │   │   ├── legal-links/
│   │   │   │   └── disclaimer/
│   │   │   └── header/
│   │   │       ├── index.tsx
│   │   │       └── burger-menu/
│   │   └── utils/
│   │       └── class-names.ts
│   ├── package.json
│   └── tsconfig.json
└── core/
    └── ... (core components)

Design Specifications

Colors

  • Primary Blue: #00B9E6
  • Text Gray: #2D2926
  • Button Gradient:
    • From: #40AFC9
    • To: #007c83

Typography

  • Font sizes: 13px (mobile) to 15px (desktop)
  • Font weights: Regular (400), Medium (500), Semibold (600)

Breakpoints

  • Mobile: < 768px
  • Desktop: ≥ 768px

Best Practices

  1. Component Organization

    • Modular component structure
    • Separate mobile and desktop implementations
    • Reusable utility functions
  2. Styling

    • Tailwind CSS for styling
    • Responsive design patterns
    • Consistent color usage
    • Proper spacing and alignment
  3. Accessibility

    • ARIA labels for interactive elements
    • Keyboard navigation support
    • Proper heading hierarchy
  4. Performance

    • Optimized SVG icons
    • Conditional rendering
    • Efficient state management

Contributing

Please refer to our contributing guidelines for details on our code of conduct and the process for submitting pull requests.