import { LICENSE_DESCRIPTION, LICENSE_TITLE } from "#configuration/strings/page.strings"; import { LICENSE_ICON } from "#configuration/icons/page.icons"; import { LICENSE_PAGE } from "#core/ids/page.ids"; import { registerPage } from "#domain/registries/page.registry"; registerPage({ description: LICENSE_DESCRIPTION, icon: LICENSE_ICON, id: LICENSE_PAGE, listed: true, load: async () => (await import("#presentation/views/license.view")).PAGE, order: 40, title: LICENSE_TITLE, });