New GUI relative files backup

Change-Id: Ifd4f967ce5a3f8194254ae3d1ec5973e230a85eb
diff --git a/mcord/non-xos-config/ui-style-config.js b/mcord/non-xos-config/ui-style-config.js
new file mode 100644
index 0000000..bf564fe
--- /dev/null
+++ b/mcord/non-xos-config/ui-style-config.js
@@ -0,0 +1,61 @@
+angular.module('app')
+  .constant('StyleConfig', {
+    projectName: 'M-CORD',
+    favicon: 'cord-favicon.png',
+    background: 'mcord-bg.jpg',
+    payoff: 'Your way toward 5G',
+    logo: 'cord-logo.png',
+    routes: [
+      {
+        label: 'Slices',
+        state: 'xos.core.slices'
+      },
+      {
+        label: 'Instances',
+        state: 'xos.core.instances'
+      },
+      {
+        label: 'Nodes',
+        state: 'xos.core.nodes'
+      },
+      {
+        label: 'Users',
+        state: 'xos.core.users'
+      },
+      {
+        label: 'Services',
+        state: 'xos.mcord.services',
+        // parent: 'xos.mcord'
+      },
+      {
+        label: 'MCORD',
+        state: 'xos.mcord'
+      },
+      {
+        label: 'Global Topology',
+        state: 'xos.mcord.topo',
+        params: {sliceId: ''},
+        parent: 'xos.mcord'
+      },
+      {
+        label: 'Public Safety',
+        state: 'xos.mcord.topo',
+        params: {sliceId: 1},
+        parent: 'xos.mcord'
+      },
+      {
+        label: 'RAN Slicing',
+        state: 'xos.mcord.topo',
+        params: {sliceId: '3,4'},
+        parent: 'xos.mcord'
+      },
+      {
+        label: 'Connectionless GW',
+        state: 'xos.mcord.topo',
+        params: {sliceId: 2},
+        parent: 'xos.mcord'
+      },
+    ]
+  });
+
+