From d363306235f2a48f16e488f20f73e2233ddcf281 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 29 Nov 2023 18:07:20 +0100 Subject: refactor(pages): improve Homepage * move custom homepage components that does not require props to the MDX file (links should not need to be translated here but where they are defined) * move SEO title and meta desc to MDX file * make Page component the wrapper instead of using a React fragment * fix MDX module types --- src/utils/constants.ts | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) (limited to 'src/utils/constants.ts') diff --git a/src/utils/constants.ts b/src/utils/constants.ts index 26cbeaa..043a530 100644 --- a/src/utils/constants.ts +++ b/src/utils/constants.ts @@ -2,7 +2,6 @@ export const PERSONAL_LINKS = { GITHUB: 'https://github.com/ArmandPhilippot', GITLAB: 'https://gitlab.com/ArmandPhilippot', LINKEDIN: 'https://www.linkedin.com/in/armandphilippot', - SHAARLI: 'https://shaarli.armandphilippot.com/', } as const; /** @@ -21,12 +20,7 @@ export const ROUTES = { PROJECTS: '/projets', RSS: '/feed', SEARCH: '/recherche', - THEMATICS: { - INDEX: '/thematique', - FREE: '/thematique/libre', - LINUX: '/thematique/linux', - WEB_DEV: '/thematique/developpement-web', - }, + THEMATICS: '/thematique', TOPICS: '/sujet', } as const; -- cgit v1.2.3