> ## Documentation Index
> Fetch the complete documentation index at: https://botpress.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Creating Nodes

export const GoodToKnow = ({children}) => {
  return <Callout icon="notebook-pen" color="#65d15a" iconType="regular">
      {children}
    </Callout>;
};

Let's create a new Node and add a step to our bot's logic:

1. Select and hold the right edge of the Start Node.
2. Drag outwards to create a new transition.
3. Release anywhere on the canvas. You'll see a list of Node types to choose from—select **Standard Node**.

You just created a new Node! Notice that because you dragged out from the edge of the Start Node, it automatically transitioned to the new Node:

<Frame>
  <img alt="New Standard Node" className="block dark:hidden" src="https://mintcdn.com/botpress/kQTLjOfDaoBQlj_Z/tutorial/basics/custom-logic/assets/standard-node.png?fit=max&auto=format&n=kQTLjOfDaoBQlj_Z&q=85&s=217e7b794531d3aa76811bf5cce89e85" width="1230" height="560" data-path="tutorial/basics/custom-logic/assets/standard-node.png" />

  <img alt="New Standard Node" className="hidden dark:block" src="https://mintcdn.com/botpress/kQTLjOfDaoBQlj_Z/tutorial/basics/custom-logic/assets/standard-node-dark.png?fit=max&auto=format&n=kQTLjOfDaoBQlj_Z&q=85&s=f455c0b03768a4863c56add97e0c76b9" width="1230" height="560" data-path="tutorial/basics/custom-logic/assets/standard-node-dark.png" />
</Frame>

Standard Nodes, unlike Autonomous Nodes, don't use AI by default. This makes them great for hard-coding behaviour into your bot.

<GoodToKnow>
  You can drag-and-drop Nodes anywhere in your Workflow. This doesn’t affect your bot’s behavior—it just helps keep your Workflow organized.
</GoodToKnow>
