import Link from 'next/link' import { Button } from '@/components/ui/button' import { Card, CardContent, CardDescription, CardHeader, CardTitle } from '@/components/ui/card' import { Badge } from '@/components/ui/badge' import { ArrowRight, Search, BarChart3, GitCompare, Sparkles, Code, Zap, Shield } from 'lucide-react' import { getAllTools, getStats, getCategories } from '@/lib/data' import { formatNumber } from '@/lib/utils' import { ToolCard } from '@/components/tool-card' export default function HomePage() { const stats = getStats() const tools = getAllTools() const categories = getCategories() const featuredTools = tools.slice(0, 6) return (
{/* Hero Section */}
Version 2.0 - Now with Web Interface!

Explore AI Tool System Prompts

The most comprehensive collection of AI coding tool system prompts and configurations. Discover how {stats.total_tools}+ AI tools work under the hood.

{/* Stats Grid */}
{stats.total_tools}+
AI Tools
{stats.total_files}
Files
{formatNumber(stats.total_lines)}
Lines
{categories.length}
Categories
{/* Features Section */}

Why AI Prompts Explorer?

Discover, compare, and understand AI tool system prompts

Advanced Search Search and filter by category, company, model, or keyword Tool Comparison Compare up to 4 tools side-by-side to see differences Analytics & Stats Visualize trends and statistics across all AI tools Complete Prompts Full system prompts and tool configurations included Regular Updates New tools and updates added regularly from the community Open Source Fully open source with community contributions welcome
{/* Featured Tools Section */}

Featured AI Tools

Explore some of the most popular AI coding tools and their system prompts

{featuredTools.map((tool) => ( ))}
{/* CTA Section */}

Ready to Explore AI Prompts?

Start browsing our collection of {stats.total_tools}+ AI tools and discover how they work

) }