Where are these sections defined in the Dawn theme?

I’m new to Shopify and starting to wrap my head around how the template system works, but I can’t work out where the below section is defined in Dawn 9.0

The footer blocks I found in footer.liquid, but I can’t find where the sections are defined that contains that highlighted Email Signup section.

I want to add another section option in that list.

The “Email signup” section is newsletter.liquid and located in sections folder.

Generally, All defined sections which save in sections folder can be used in all template page, but if section schema has presets and presets.name property, then it will list on the “Add Section” dropdown list, and vice versa. And, enabled_on/disabled_on can also control the section whether list on the the “Add Section” dropdown list or not. you can get more details at : https://shopify.dev/docs/themes/architecture/sections/section-schema#presets

Ah, I see. So in newsletter.liquid, this is the part of the schema that restricts it from appearing in the header area.

"disabled_on": {
"groups": ["header"]
}

Thanks!