All partials / components scss file can be "used" without relying about path
just by their namespace.
In a scss module we can load settings module only with @use 'settings',
without thinkink about path like '../path/to/settings'.
When creating sub-modules we can load the main setting file
only with @use 'settings' as * or @use 'settings' as brand (using a namespacing)