@limber crescent I didn't set up anything! I'm a user without the knowledge how Starlight works! I just followed the docs, and now I'm stuck trying to figuring out how to add a landing page in src/pages/index.astro witouth breaking the starlight doc
in the official doc of starlight they mention:
Custom pages
For advanced use cases, you can add custom pages by creating a src/pages/ directory. The src/pages/ directory uses Astro’s file-based routing and includes support for .astro files amongst other page formats. This is helpful if you need to build pages with a completely custom layout or generate a page from an alternative data source.
For example, this project mixes Markdown content in src/content/docs/ with Astro and HTML routes in src/pages/:
however they point to the doc of File base routing
File-based routing
Astro leverages a routing strategy called file-based routing. Each file in your src/pages/ directory becomes an endpoint on your site based on its file path.
A single file can also generate multiple pages using dynamic routing. This allows you to create pages even if your content lives outside of the special /pages/ directory, such as in a content collection or a CMS.
Read more about Routing in Astro.
which point to other resources like content-collection, or dynamic routing or more info about routing.
However, none seems to indicate how Starlight can coexist with the rest of the ecosystem.