Is it possible to use a bundle for the home page?

The home page is basically always content/_index.md.

But I don’t want my home page to be just a single markdown file. I want it to be a leaf bundle. For example
content/index/index.md or content/homepage/index.md This is so I can put other assets required for the homepage, such as images, in that directory next to the markdown. I don’t want them polluting the top level of the content directory.

Is there some way to use a directory leaf bundle for the home page?

This works great.

content/
├── images/
│   ├── a.jpg  <-- page resource for content/_index.md
│   ├── b.jpg  <-- page resource for content/_index.md
│   └── c.jpg  <-- page resource for content/_index.md
└── _index.md  <-- branch bundle, not leaf bundle

See:
https://gohugo.io/content-management/page-bundles/#comparison