/** * 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 = [ 'Pragmatic Speed: Ship features, not config', 'Clarity over Magic: Explicit is better than implicit', 'Robustness: Security and testing baked in', 'Active development and improvements', ]; export function PhilosophySection() { return (

Why Syndarix?

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) => (
  • ))}
); }