import React from "react"; import Feature from "./Feature"; const FEATURES = [ { icon: "โšก๏ธ", title: "Lightning Fast", description: "Built from scratch in Zig, Bun is focused on performance and developer experience", highlight: "Zig", }, { icon: "๐ŸŽฏ", title: "All-in-One", description: "Bundler, test runner, and npm-compatible package manager in a single tool", }, { icon: "๐Ÿš€", title: "JavaScript Runtime", description: "Drop-in replacement for Node.js with 3x faster startup time", highlight: "3x faster", }, { icon: "๐Ÿ“ฆ", title: "Package Management", description: "Native package manager that can install dependencies up to 30x faster than npm", highlight: "30x faster", }, { icon: "๐Ÿงช", title: "Testing Made Simple", description: "Built-in test runner with Jest-compatible API and snapshot testing", }, { icon: "๐Ÿ”ฅ", title: "Hot Reloading", description: "Lightning-fast hot module replacement (HMR) for rapid development", }, ]; export default function Features() { return (

Why Choose Bun?

{FEATURES.map((feature, index) => ( ))}
); }