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

agentic-ai-consulting

v1.0.0

Published

Production-ready website for Agentic AI Consulting GmbH

Readme

Agentic AI Consulting GmbH Website

Production-ready Next.js website for Agentic AI Consulting GmbH - a German enterprise AI consulting company.

🚀 Quick Start

Prerequisites

  • Node.js 18+ and npm/yarn
  • Git

Installation

  1. Clone the repository:
git clone <repository-url>
cd agentic-ai-consulting
  1. Install dependencies:
npm install
  1. Create environment file:
cp .env.example .env.local
  1. Start development server:
npm run dev
  1. Open http://localhost:3000 in your browser.

📁 Project Structure

├── src/
│   ├── app/              # Next.js App Router pages
│   │   ├── about/        # About page
│   │   ├── blog/         # Blog listing and posts
│   │   ├── careers/      # Careers page
│   │   ├── case-studies/ # Case studies
│   │   ├── contact/      # Contact page
│   │   ├── services/     # Services pages
│   │   ├── solutions/    # Industry solutions
│   │   ├── api/          # API routes
│   │   ├── layout.tsx    # Root layout
│   │   ├── page.tsx      # Home page
│   │   ├── sitemap.ts    # Sitemap generation
│   │   └── robots.ts     # Robots.txt
│   ├── components/       # React components
│   │   ├── Button.tsx
│   │   ├── Card.tsx
│   │   ├── ContactForm.tsx
│   │   ├── CookieBanner.tsx
│   │   ├── Footer.tsx
│   │   ├── Header.tsx
│   │   ├── Hero.tsx
│   │   └── ThemeProvider.tsx
│   ├── lib/              # Utilities and data
│   └── styles/           # Global styles
├── public/               # Static assets
│   ├── logo.svg
│   └── favicon.ico
├── package.json
├── tailwind.config.ts
├── tsconfig.json
└── next.config.mjs

🛠️ Technologies

  • Framework: Next.js 14 (App Router)
  • Language: TypeScript
  • Styling: Tailwind CSS
  • Animations: Framer Motion
  • Icons: Lucide React
  • Forms: EmailJS / Formspree integration ready

🎨 Customization Guide

Changing Branding

  1. Logo: Replace public/logo.svg with your logo
  2. Colors: Edit tailwind.config.ts - primary, navy, and gray color palettes
  3. Fonts: Update fonts in src/app/layout.tsx (Inter & Poppins)
  4. Company Name: Search and replace "Agentic AI Consulting GmbH" throughout codebase

Adding Content

  1. Case Studies: Edit src/lib/data.ts or create CMS integration
  2. Blog Posts: Add markdown files or integrate with headless CMS
  3. Team Members: Update team data in src/app/about/page.tsx
  4. Services: Modify service data in src/app/services/page.tsx

Form Integration

The contact and careers forms are ready for integration with:

  • EmailJS: Uncomment EmailJS code in ContactForm.tsx and add API keys to .env.local
  • Formspree: Point form action to Formspree endpoint
  • API Routes: Complete the API route implementations in src/app/api/

📧 Form Setup

Option 1: EmailJS

  1. Sign up at EmailJS
  2. Create a service and template
  3. Add to .env.local:
NEXT_PUBLIC_EMAILJS_SERVICE_ID=your_service_id
NEXT_PUBLIC_EMAILJS_TEMPLATE_ID=your_template_id
NEXT_PUBLIC_EMAILJS_PUBLIC_KEY=your_public_key
  1. Uncomment EmailJS code in ContactForm.tsx

Option 2: Next.js API Route

  1. Complete implementation in src/app/api/contact/route.ts
  2. Add email service (Resend, SendGrid, etc.)
  3. Configure environment variables

🌍 Deployment

Vercel (Recommended)

  1. Push code to GitHub
  2. Import project in Vercel
  3. Add environment variables
  4. Deploy

Netlify

  1. Build command: npm run build
  2. Publish directory: .next
  3. Add environment variables in Netlify dashboard

Docker

docker build -t agentic-ai-website .
docker run -p 3000:3000 agentic-ai-website

🔧 Environment Variables

Create .env.local:

# EmailJS (if using)
NEXT_PUBLIC_EMAILJS_SERVICE_ID=
NEXT_PUBLIC_EMAILJS_TEMPLATE_ID=
NEXT_PUBLIC_EMAILJS_PUBLIC_KEY=

# Site URL
NEXT_PUBLIC_SITE_URL=https://agentic-ai-consulting.com

# Analytics (optional)
NEXT_PUBLIC_GA_ID=

# Contact Email
[email protected]

📊 SEO & Performance

  • ✅ SEO metadata configured
  • ✅ JSON-LD structured data
  • ✅ Sitemap generation
  • ✅ Robots.txt
  • ✅ Open Graph tags
  • ✅ Twitter cards
  • ✅ Image optimization ready
  • ✅ Lazy loading implemented

Performance Optimization

  • Images are optimized with Next.js Image component
  • Code splitting with Next.js App Router
  • Font optimization with next/font
  • CSS optimized with Tailwind

🎯 Features

  • ✅ Responsive design (mobile-first)
  • ✅ Dark/Light theme toggle
  • ✅ GDPR-compliant cookie banner
  • ✅ Accessibility (ARIA labels, keyboard navigation)
  • ✅ Smooth animations (Framer Motion)
  • ✅ Contact forms
  • ✅ Blog structure
  • ✅ Case studies showcase
  • ✅ Careers page with application form
  • ✅ Legal pages (Privacy, Terms)

📝 Content Placeholders

The following assets need to be replaced with actual content:

  • /public/clients/* - Client logo images
  • /public/team/* - Team member photos
  • Hero images - Generate using provided prompts (see IMAGE_PROMPTS.md)
  • Case study images
  • Blog post images

🖼️ Image Generation Prompts

See IMAGE_PROMPTS.md for DALL·E / Midjourney prompts for hero images, banners, and backgrounds.

🔍 Analytics Integration

To add analytics:

  1. Google Analytics: Add GA ID to environment variables
  2. Custom Analytics: Add tracking code in src/app/layout.tsx

🧪 Testing

npm run lint    # Run ESLint
npm run build   # Test production build

📚 Additional Resources

📄 License

Proprietary - Agentic AI Consulting GmbH

🤝 Support

For questions or issues, contact:


Built with ❤️ by Agentic AI Consulting GmbH