Multiple Tanstack Start projects behaving as one in a monorepo?

Hi, I'm multiple NextJS projects that want to migrate to Tanstack. Currently, I have a NextJS app for authentication, dashboard, etc. managed by different teams, but the router isn't used in each project but in the main NextJS app. The structure is like:

(main app)
-- app
-- auth
-- sign-in
-- sign-up
-- dashboard
-- page 1
-- subpage 1
-- subpage 2
-- page 2
-- page 3

(auth app)
-- screens
-- sign-in
-- sign-up

(dashboard app)
-- screens
-- page 1
-- subpage 1
-- subpage 2
-- page 2
-- page 3

NextJS link component isn't typed so it's easy to make this, but Tanstack Start is typed, so Idk if there's any example, guide or may be a better approach to making this in Tanstack Start.
Was this page helpful?