feat(SW-266): Replacing static metadata with data from Contentstack on Loyalty pages and Account Pages

Approved-by: Simon.Emanuelsson
This commit is contained in:
Pontus Dreij
2024-08-22 13:49:34 +00:00
14 changed files with 287 additions and 8 deletions
+2
View File
@@ -7,6 +7,7 @@ import { contentPageRouter } from "./contentPage"
import { hotelPageRouter } from "./hotelPage"
import { languageSwitcherRouter } from "./languageSwitcher"
import { loyaltyPageRouter } from "./loyaltyPage"
import { metaDataRouter } from "./metadata"
import { myPagesRouter } from "./myPages"
export const contentstackRouter = router({
@@ -18,4 +19,5 @@ export const contentstackRouter = router({
loyaltyPage: loyaltyPageRouter,
contentPage: contentPageRouter,
myPages: myPagesRouter,
metaData: metaDataRouter,
})