import { GRAMMAR_BANNER_ALT, GRAMMAR_DESCRIPTION, GRAMMAR_TITLE } from "#configuration/strings/page.strings"; import { GRAMMAR_BANNER } from "#assets/image.assets"; import { GRAMMAR_ICON } from "#configuration/icons/page.icons"; import { GRAMMAR_PAGE } from "#core/ids/page.ids"; import { registerPage } from "#domain/registries/page.registry"; registerPage({ banner: { alt: GRAMMAR_BANNER_ALT, source: GRAMMAR_BANNER }, description: GRAMMAR_DESCRIPTION, icon: GRAMMAR_ICON, id: GRAMMAR_PAGE, listed: true, load: async () => (await import("#presentation/views/grammar.view")).PAGE, order: 20, title: GRAMMAR_TITLE, });