import React from 'react'; const App = () => { const steps = [ { title: "Choose the right beans", description: "Select freshly roasted, high-quality espresso beans. Look for a medium to dark roast with a rich flavor profile." }, { title: "Grind the beans", description: "Grind your beans just before brewing. Aim for a fine, consistent grind - similar to table salt." }, { title: "Dose the grounds", description: "Use about 18-20 grams of ground coffee for a double shot. Adjust based on your basket size and preference." }, { title: "Distribute and tamp", description: "Evenly distribute the grounds in the portafilter and tamp with about 30 pounds of pressure. Ensure a level surface." }, { title: "Prepare the machine", description: "Ensure your espresso machine is heated up. Purge the group head to clear any old grounds and stabilize temperature." }, { title: "Pull the shot", description: "Lock in the portafilter and start the extraction. Aim for a 25-30 second pull time for a 2oz double shot." }, { title: "Assess and adjust", description: "Evaluate the taste and appearance. A good shot should have a golden crema and balanced flavor. Adjust grind, dose, or time as needed." } ]; return (

The Perfect Espresso Shot

A step-by-step guide to brewing excellence

{steps.map((step, index) => (

Step {index + 1}: {step.title}

{step.description}

))}
); }; export default App;