const techStack = [ { category: 'Frontend', technologies: [ { name: 'Next.js 16', description: 'React framework with App Router' }, { name: 'Expo 54', description: 'React Native framework' }, { name: 'React 19', description: 'Latest React with Server Components' }, { name: 'Tailwind CSS v4', description: 'Utility-first CSS framework', }, { name: 'shadcn/ui', description: 'Beautiful component library' }, ], }, { category: 'Backend', technologies: [ { name: 'Convex', description: 'Self-hosted reactive backend' }, { name: '@convex-dev/auth', description: 'Multi-provider authentication', }, { name: 'UseSend', description: 'Self-hosted email service' }, { name: 'File Storage', description: 'Built-in file uploads' }, ], }, { category: 'Developer Tools', technologies: [ { name: 'Turborepo', description: 'High-performance build system' }, { name: 'TypeScript', description: 'Type-safe development' }, { name: 'Bun', description: 'Fast package manager and runtime' }, { name: 'ESLint + Prettier', description: 'Code quality tools' }, { name: 'Docker', description: 'Containerized deployment' }, ], }, ]; export const TechStack = () => (

Modern Tech Stack

Built with the latest and greatest tools for maximum productivity and performance.

{techStack.map((stack) => (

{stack.category}

    {stack.technologies.map((tech) => (
  • {tech.name}
    {tech.description}
  • ))}
))}
);