# routes/

This guide was generated by `xuda-cli`.

You can remove all generated folder guides later with:

~~~bash
npm run clean:readmes
~~~

Use this folder for route resources.

## File rules

- file type: `.route.json5`
- each file compiles to a Xuda `route` resource

## What belongs here

- route menu definitions
- navigation plans
- launchable app sections and their order

## Important rules

- route resources describe navigation structure
- they do not replace UI state by themselves, but they give the app a clear route model
- keep route titles readable and program references explicit

## Example

~~~json5
{
  id: "app_route",
  menuTitle: "App Route",
  menu: [
    { title: "Overview", prog: "app" },
    { title: "Students", prog: "student_list" },
    { title: "Profiles", prog: "profile_center" }
  ]
}
~~~
