From ef658a8b649126838f1a18f8b0286246255d98f8 Mon Sep 17 00:00:00 2001 From: SrGooglo Date: Tue, 25 Feb 2025 23:06:20 +0000 Subject: [PATCH] change routes --- packages/app/config/routes.js | 141 +++++++++++++++++----------------- 1 file changed, 71 insertions(+), 70 deletions(-) diff --git a/packages/app/config/routes.js b/packages/app/config/routes.js index 0e7323b1..dcef44ba 100755 --- a/packages/app/config/routes.js +++ b/packages/app/config/routes.js @@ -1,71 +1,72 @@ export default [ - { - path: "/auth", - useLayout: "minimal", - public: true - }, - { - path: "/post/*", - useLayout: "default", - public: true - }, - { - path: "/tv/live/*", - useLayout: "default", - public: true - }, - { - path: "/featured-event/*", - useLayout: "default", - public: true - }, - { - path: "/settings", - useLayout: "default", - centeredContent: { - mobile: true, - desktop: false, - }, - mobileTopBarSpacer: true, - }, - { - path: "/music/*", - useLayout: "default", - centeredContent: true, - }, - { - path: "/nfc/*", - useLayout: "minimal", - public: true, - }, - { - path: "/privacy/*", - useLayout: "default", - public: true - }, - { - path: "/terms/*", - useLayout: "default", - public: true - }, - { - path: "/apr/*", - useLayout: "minimal", - public: true - }, - { - path: "/marketplace/*", - useLayout: "default", - centeredContent: true, - extendedContent: true, - }, - // THIS MUST BE THE LAST ROUTE - { - path: "/", - useLayout: "default", - centeredContent: { - mobile: false, - desktop: true, - }, - }, -] \ No newline at end of file + { + path: "/auth", + useLayout: "minimal", + public: true, + }, + { + path: "/post/*", + useLayout: "default", + public: true, + }, + { + path: "/tv/live/*", + useLayout: "default", + public: true, + }, + { + path: "/featured-event/*", + useLayout: "default", + public: true, + }, + { + path: "/settings", + useLayout: "default", + centeredContent: { + mobile: true, + desktop: false, + }, + mobileTopBarSpacer: true, + }, + { + path: "/music/*", + useLayout: "default", + centeredContent: true, + }, + { + path: "/nfc/*", + useLayout: "minimal", + public: true, + }, + { + path: "/privacy/*", + useLayout: "default", + public: true, + }, + { + path: "/terms/*", + useLayout: "default", + public: true, + }, + { + path: "/recover/*", + useLayout: "minimal", + public: true, + }, + + { + path: "/marketplace/*", + useLayout: "default", + centeredContent: true, + extendedContent: true, + }, + // THIS MUST BE THE LAST ROUTE + { + path: "/", + useLayout: "default", + centeredContent: { + mobile: false, + desktop: true, + }, + }, +]