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

@metajob/metajob-theme

v1.1.2

Published

A comprehensive Next.js UI theme package for job board applications. This theme is the official UI component library used in the **MetaJob** full-stack job board solution.

Readme

MetaJob Theme - Next.js UI Components

A comprehensive Next.js UI theme package for job board applications. This theme is the official UI component library used in the MetaJob full-stack job board solution.

🎨 Features

  • Modern Design - Clean, professional job board interface
  • Responsive Layout - Mobile-first design that works on all devices
  • TypeScript Support - Fully typed components for better development experience
  • Customizable - Easy to customize colors, fonts, and layouts
  • Optimized Performance - Built with Next.js best practices
  • Accessibility Ready - WCAG compliant components

📦 Installation

For MetaJob Full-Stack Solution

If you're using the complete MetaJob solution, the theme is already integrated. Simply run:

pnpm install

Standalone Installation

To use this theme in your own Next.js project:

npm install metajob-theme
# or
yarn add metajob-theme
# or
pnpm add metajob-theme

🚀 Quick Start

1. Import Theme Styles

Add the theme CSS to your _app.js or layout.tsx:

import 'metajob-theme/styles/globals.css'

function MyApp({ Component, pageProps }) {
  return <Component {...pageProps} />
}

export default MyApp

2. Use Theme Components

import { JobCard, SearchBar, Header } from 'metajob-theme'

function HomePage() {
  return (
    <div>
      <Header />
      <SearchBar onSearch={(query) => console.log(query)} />
      <JobCard 
        title="Frontend Developer"
        company="Tech Company"
        location="Remote"
        salary="$70k - $90k"
      />
    </div>
  )
}

🧩 Components

Core Components

  • Header - Navigation header with logo and menu
  • Footer - Site footer with links and information
  • JobCard - Individual job listing display
  • SearchBar - Job search functionality
  • FilterPanel - Job filtering sidebar
  • Pagination - Page navigation component

Form Components

  • LoginForm - User authentication form
  • RegisterForm - User registration form
  • JobApplicationForm - Job application submission
  • ContactForm - Contact/inquiry form

Layout Components

  • Container - Responsive container wrapper
  • Grid - Flexible grid system
  • Sidebar - Collapsible sidebar layout
  • Modal - Overlay modal component

🎨 Customization

Theme Configuration

Create a theme.config.js file in your project root:

module.exports = {
  colors: {
    primary: '#3B82F6',
    secondary: '#10B981',
    accent: '#F59E0B',
    background: '#FFFFFF',
    text: '#1F2937'
  },
  fonts: {
    primary: 'Inter, sans-serif',
    heading: 'Poppins, sans-serif'
  },
  breakpoints: {
    sm: '640px',
    md: '768px',
    lg: '1024px',
    xl: '1280px'
  }
}

CSS Custom Properties

Override theme variables in your CSS:

:root {
  --metajob-primary: #your-color;
  --metajob-secondary: #your-color;
  --metajob-font-family: 'Your Font', sans-serif;
}

📖 Integration with MetaJob

This theme is designed to work seamlessly with the MetaJob full-stack solution:

  1. Backend Integration - Works with Strapi CMS backend
  2. API Ready - Components designed for REST/GraphQL APIs
  3. Authentication - Built-in auth components
  4. Job Management - Complete job CRUD operations
  5. User Profiles - Employer and candidate interfaces

🛠️ Development

Prerequisites

  • Node.js (v18 or higher)
  • Next.js 13+
  • React 18+

Local Development

# Clone the MetaJob repository
git clone https://github.com/your-username/metajob-pro.git
cd metajob-pro/packages/metajob-theme

# Install dependencies
pnpm install

# Start development
pnpm dev

📁 Project Structure

metajob-theme/
├── components/          # React components
│   ├── common/         # Shared components
│   ├── forms/          # Form components
│   ├── layout/         # Layout components
│   └── ui/             # UI primitives
├── styles/             # CSS and styling
│   ├── globals.css     # Global styles
│   ├── components/     # Component styles
│   └── themes/         # Theme variations
├── hooks/              # Custom React hooks
├── utils/              # Utility functions
├── types/              # TypeScript definitions
└── index.ts            # Main export file

🤝 Contributing

We welcome contributions! Please see our Contributing Guide for details.

📄 License

  • FREE for Personal Use - Learning, development, personal projects
  • 💼 Commercial License Required - Business use, client projects, revenue-generating apps

Get Commercial License: MetaJob Commercial License

🔗 Related Packages

  • MetaJob Core - Complete full-stack job board solution
  • MetaJob Backend - Strapi CMS backend for job management

📞 Support

🌟 Show Your Support

If this theme helps you build amazing job board applications, please ⭐ star this repo!


Built with ❤️ for the developer community