Concept Flow - Dynamic route segments
User visits URL
Next.js Router checks routes
Match dynamic segment pattern
Extract dynamic value from URL
Pass value as prop to page component
Render page with dynamic data
Next.js matches the URL to a dynamic route pattern, extracts the dynamic part, and passes it to the page component to render content based on that value.