> ## Documentation Index
> Fetch the complete documentation index at: https://botpress-charmenta-pr-700.mintlify.site/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-charmenta-pr-700/MARvjyf1O9JTt73h/tutorial/basics/custom-logic/assets/standard-node.png?fit=max&auto=format&n=MARvjyf1O9JTt73h&q=85&s=5f8ba3ed673eaa8f2bdfdc47fb9a5867" 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-charmenta-pr-700/MARvjyf1O9JTt73h/tutorial/basics/custom-logic/assets/standard-node-dark.png?fit=max&auto=format&n=MARvjyf1O9JTt73h&q=85&s=73486c4065e7366b911ba65b3ee8a56d" 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>
