import { SectionHeading } from "@/components/shared/SectionHeading"; import { ArrowLeft, ArrowRight } from "lucide-react"; export function HowItWorksSection() { const steps = [ { number: "01", title: "Neurons and Layers", description: "A neural network consists of interconnected nodes called neurons. Neurons are organized into layers.", }, { number: "02", title: "Activation Function", description: "Each neuron applies an activation function to the weighted sum of its inputs and produces an output", }, { number: "03", title: "Feedforward Process", description: "The inputs are multiplied by their respective weights, summed up, and passed through the activation function.", }, { number: "04", title: "Backpropagation", description: "The inputs are multiplied by their respective weights, summed up, and passed through the activation function.", }, ]; return (
{steps.map((step, index) => (
{step.number} {step.title}

{step.description}

))}
); }