/** * Feature Grid * Grid layout displaying 6 main features with stagger animation */ 'use client'; import { motion } from 'framer-motion'; import { Shield, Users, BarChart3, BookOpen, Server, Code } from 'lucide-react'; import { FeatureCard } from './FeatureCard'; const features = [ { icon: Shield, title: 'Authentication & Security', description: 'JWT with refresh tokens, OAuth social login (Google, GitHub with PKCE), OAuth Provider mode for MCP clients, session management, rate limiting, and comprehensive security tests', highlight: 'OAuth 2.0 + MCP ready', ctaText: 'View Auth Flow', ctaHref: '/login', }, { icon: Users, title: 'Multi-Tenant Organizations', description: 'Complete organization system with 3-tier RBAC (Owner/Admin/Member). Invite members, manage permissions, and scope data access per organization—all batteries included', highlight: 'Multi-tenancy built-in', ctaText: 'See Organizations', ctaHref: '/admin/organizations', }, { icon: BarChart3, title: 'Admin Dashboard', description: 'Full-featured admin panel with user management, real-time analytics charts, bulk operations, session monitoring, and role-based access controls', highlight: 'Enterprise-ready admin', ctaText: 'Try Admin Panel', ctaHref: '/admin', }, { icon: BookOpen, title: 'Complete Documentation', description: '12+ documentation guides covering architecture, design system, testing patterns, deployment, and AI code generation guidelines. Interactive API docs with Swagger and ReDoc', highlight: 'Developer-first docs', ctaText: 'Browse Docs', ctaHref: 'https://github.com/your-org/fast-next-template#documentation', }, { icon: Server, title: 'Production Ready', description: 'Docker deployment configs, database migrations with Alembic helpers, connection pooling, health checks, monitoring setup, and production security headers', highlight: 'Deploy with confidence', ctaText: 'Deployment Guide', ctaHref: 'https://github.com/your-org/fast-next-template#deployment', }, { icon: Code, title: 'Developer Experience', description: 'Auto-generated TypeScript API client, i18n with next-intl (English, Italian), hot reload, migration helpers, VS Code settings, and a comprehensive component library', highlight: 'Delightful DX + i18n', ctaText: 'Explore Components', ctaHref: '/dev', }, ]; const containerVariants = { hidden: { opacity: 0 }, show: { opacity: 1, transition: { staggerChildren: 0.15, }, }, }; const itemVariants = { hidden: { opacity: 0, y: 20 }, show: { opacity: 1, y: 0 }, }; export function FeatureGrid() { return (

Comprehensive Features, No Assembly Required

Everything you need to build production-grade web applications. Clone, customize, and ship.

{features.map((feature) => ( ))}
); }