How to create drop down pages?

Hello, I am using Materalize CSS and I have started going through and changing the Deliver theme to suit my needs.

— html

LOGO
``` The html code of a basic navbar looks like :

— html

Logo
```

I can see that the code for " theme_config.dropdown.enabled" but I don’t see where it is located and to create child pages. I also want my child page to override the default base.html.twig which I assume is possible. I basically want to create a product child page.
What would my folder structure look like to achieve this?
My current folder structure for skincare is : 02.skincare/_modularpages
_modularpages
I want to achieve “silver” as a child page of “skincare” therefore would it look like 02.skincare/01.silver ?

I understand that my default makrdown has to specify the page as

content:
    items:
      '@page.children': /silver
                                /gold
                                /plantinum
---

I can’t speak for “Materialize” theme as I didn’t design that, but it appears much of the logic was ported from “Antimatter” theme which does have a similar approach for dropdown menus.

Once you have your pages build in a nested structure, really the only thing to enable dropdown menus is to ‘turn it on in the theme config’. Once enabled, the navigation Twig, will keep recursing through the visible children to build a more in-depth navigation tree.

The only other element required is the CSS to render it appropriately.