Add your first server action
Understand what a first Server Connect action does, how it fits into the beginner data flow, and which practical tours to open next.
Your first server action turns page data from an idea into a contract
The moment you add a first Server Connect action, the page stops depending on imagined data and starts depending on a defined request and response. That is why this step matters in the beginner path: it gives the page a real backend boundary you can test, inspect, and reuse.
The practical beginner pattern is read or submit one clear thing
A strong first action is usually one of two patterns: fetch a readable dataset for a page, or accept a simple form submission. Both keep the data contract small enough to understand while teaching the same core lesson: inputs come in, server logic runs, JSON comes back.
TIP: If you cannot describe the response shape in one sentence yet, the first action is probably too ambitious for the beginner stage.
Next steps
Use the practical tours below when you want the actual editor workflow, then return to the beginner sequence to preview the result.