diff --git a/web/e.cash/data/navitems.js b/web/e.cash/data/navitems.js --- a/web/e.cash/data/navitems.js +++ b/web/e.cash/data/navitems.js @@ -27,7 +27,7 @@ }, { title: 'eCash Brand', - link: '/ecash-brand', + link: '/brand', icon: '/images/dna-icon.svg', }, ], diff --git a/web/e.cash/next.config.js b/web/e.cash/next.config.js --- a/web/e.cash/next.config.js +++ b/web/e.cash/next.config.js @@ -39,6 +39,11 @@ destination: '/roadmap', permanent: true, }, + { + source: '/ecash-brand', + destination: '/brand', + permanent: true, + }, ]; }, }; diff --git a/web/e.cash/pages/ecash-brand.js b/web/e.cash/pages/brand.js rename from web/e.cash/pages/ecash-brand.js rename to web/e.cash/pages/brand.js --- a/web/e.cash/pages/ecash-brand.js +++ b/web/e.cash/pages/brand.js @@ -25,7 +25,7 @@ Swatch, ColorValues, FontLink, -} from '/styles/pages/ecash-brand.js'; +} from '/styles/pages/brand.js'; export default function EcashBrand() { const logos = [ diff --git a/web/e.cash/styles/pages/ecash-brand.js b/web/e.cash/styles/pages/brand.js rename from web/e.cash/styles/pages/ecash-brand.js rename to web/e.cash/styles/pages/brand.js