import { INFORMATION_DESCRIPTION, INFORMATION_TITLE } from "#configuration/strings/page.strings"; import { INFORMATION_ICON } from "#configuration/icons/page.icons"; import { INFORMATION_PAGE } from "#core/ids/page.ids"; import { registerPage } from "#domain/registries/page.registry"; registerPage({ description: INFORMATION_DESCRIPTION, icon: INFORMATION_ICON, id: INFORMATION_PAGE, listed: true, load: async () => (await import("#presentation/views/information.view")).PAGE, order: 50, title: INFORMATION_TITLE, });