import { TERMS_DESCRIPTION, TERMS_TITLE } from "#configuration/strings/page.strings"; import { TERMS_ICON } from "#configuration/icons/page.icons"; import { TERMS_PAGE } from "#core/ids/page.ids"; import { registerPage } from "#domain/registries/page.registry"; registerPage({ description: TERMS_DESCRIPTION, icon: TERMS_ICON, id: TERMS_PAGE, listed: false, load: async () => (await import("#presentation/views/terms.view")).PAGE, order: 60, title: TERMS_TITLE, });