/** * Philosophy Section * "For Developers, By Developers" section explaining why this template exists */ 'use client'; import { motion } from 'framer-motion'; import { X, Check } from 'lucide-react'; const wontFind = [ 'Vendor lock-in to specific services', 'Hidden costs or upgrade prompts', 'Poorly documented "magic"', 'Outdated dependencies', ]; const willFind = [ 'Production patterns that actually work', 'Comprehensive test coverage (not aspirational)', 'Clear, honest documentation', 'Active development and improvements', ]; export function PhilosophySection() { return (

Why This Template Exists

We built this template after rebuilding the same authentication, authorization, and admin infrastructure for the fifth time. Instead of yet another tutorial or boilerplate generator, we created a complete, tested, documented codebase that you can clone and customize.

No vendor lock-in. No subscriptions. No license restrictions.

Just clean, modern code with patterns that scale. MIT licensed forever.

{/* What You Won't Find */}

    {wontFind.map((item) => (
  • ))}
{/* What You Will Find */}

    {willFind.map((item) => (
  • ))}
); }