Concept Flow - Dynamic route parameters
User visits URL
Router checks route patterns
Match dynamic segment like /user/[id
Extract parameter value from URL
Pass parameter to component
Component renders using parameter
When a user visits a URL with dynamic parts, the router finds the matching pattern, extracts the parameter, and passes it to the component to render.