From af937b8ee593de5b2ea7819a79e77279688ebea0 Mon Sep 17 00:00:00 2001 From: "k.triantafyllou" Date: Wed, 12 Jul 2023 11:59:57 +0300 Subject: [PATCH] Add redirects from old routes to new ones --- src/app/about/about.module.ts | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/app/about/about.module.ts b/src/app/about/about.module.ts index e650a83..86a188f 100644 --- a/src/app/about/about.module.ts +++ b/src/app/about/about.module.ts @@ -16,6 +16,14 @@ import {YouWeComponent} from "./you-we.component"; path: '', component: AboutComponent, data: {extraOffset: 50} + }, + { + path: 'how-it-works', + redirectTo: '/about' + }, + { + path: 'faqs', + redirectTo: '/support' } ]), BreadcrumbsModule, SliderTabsModule, HelperModule], exports: [AboutComponent],