Skip to content

Commit

Permalink
Hide mockups and update the favicon
Browse files Browse the repository at this point in the history
  • Loading branch information
sondreb committed Jun 15, 2024
1 parent c52a32d commit 21110c3
Show file tree
Hide file tree
Showing 3 changed files with 35 additions and 47 deletions.
Binary file removed app/public/favicon.ico
Binary file not shown.
80 changes: 34 additions & 46 deletions app/src/app/app.routes.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,124 +12,112 @@ export const routes: Routes = [
import('./introduction/introduction.component').then(
(c) => c.IntroductionComponent
),
title: 'Introduction',
data: { icon: 'lightbulb' }
title: 'Introduction',
data: { icon: 'lightbulb' },
},
{
path: 'dashboard',
loadComponent: () =>
import('./dashboard/dashboard.component').then(
(c) => c.DashboardComponent
),
title: 'Dashboard',
data: { icon: 'dashboard' }
title: 'Dashboard',
data: { icon: 'dashboard' },
},
{
path: 'communities',
loadComponent: () =>
import('./communities/communities.component').then(
(c) => c.CommunitiesComponent
),
title: 'Communities',
data: { icon: 'diversity_2' }
title: 'Communities',
data: { icon: 'diversity_2' },
},
{
path: 'marketplace',
loadComponent: () =>
import('./marketplace/marketplace.component').then(
(c) => c.MarketplaceComponent
),
title: 'Marketplace',
data: { icon: 'storefront' }
title: 'Marketplace',
data: { icon: 'storefront' },
},
{
path: 'apps',
loadComponent: () =>
import('./apps/apps.component').then(
(c) => c.AppsComponent
),
title: 'Apps',
data: { icon: 'apps' }
import('./apps/apps.component').then((c) => c.AppsComponent),
title: 'Apps',
data: { icon: 'apps' },
},
{
path: 'registries',
loadComponent: () =>
import('./registries/registries.component').then(
(c) => c.RegistriesComponent
),
title: 'Registries',
data: { icon: 'folder_shared' }
title: 'Registries',
data: { icon: 'folder_shared' },
},
{
path: 'registries/:id',
loadComponent: () =>
import('./registries//registry/registry.component').then(
(c) => c.RegistryComponent
),
title: 'Registry',
data: { hide: true, icon: 'folder_shared' }
title: 'Registry',
data: { hide: true, icon: 'folder_shared' },
},
{
path: 'data',
loadComponent: () =>
import('./data/data.component').then(
(c) => c.DataComponent
),
title: 'Data',
data: { icon: 'source' }
import('./data/data.component').then((c) => c.DataComponent),
title: 'Data',
data: { icon: 'source' },
},
{
path: 'identity',
loadComponent: () =>
import('./identity/identity.component').then(
(c) => c.IdentityComponent
),
title: 'Identity',
data: { icon: 'account_circle' }
import('./identity/identity.component').then((c) => c.IdentityComponent),
title: 'Identity',
data: { icon: 'account_circle' },
},
{
path: 'settings',
loadComponent: () =>
import('./settings/settings.component').then(
(c) => c.SettingsComponent
),
title: 'Settings',
data: { icon: 'settings' }
import('./settings/settings.component').then((c) => c.SettingsComponent),
title: 'Settings',
data: { icon: 'settings' },
},
{
path: 'address',
loadComponent: () =>
import('./address-form/address-form.component').then(
(c) => c.AddressFormComponent
),
title: 'Address',
data: { icon: 'folder' }
title: 'Address',
data: { hide: true, icon: 'folder' },
},
{
path: 'table',
loadComponent: () =>
import('./table/table.component').then(
(c) => c.TableComponent
),
title: 'Table',
data: { icon: 'folder' }
import('./table/table.component').then((c) => c.TableComponent),
title: 'Table',
data: { hide: true, icon: 'folder' },
},
{
path: 'tree',
loadComponent: () =>
import('./tree/tree.component').then(
(c) => c.TreeComponent
),
title: 'Tree',
data: { icon: 'folder' }
import('./tree/tree.component').then((c) => c.TreeComponent),
title: 'Tree',
data: { hide: true, icon: 'folder' },
},
{
path: 'drag-drop',
loadComponent: () =>
import('./drag-drop/drag-drop.component').then(
(c) => c.DragDropComponent
),
title: 'Drag-Drop',
data: { icon: 'folder' }
title: 'Drag-Drop',
data: { hide: true, icon: 'folder' },
},
];
2 changes: 1 addition & 1 deletion app/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
<title>Ariton</title>
<base href="/">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="icon" type="image/x-icon" href="favicon.ico">
<link rel="icon" type="image/png" href="ariton-favicon.png">
<link href="https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
Expand Down

0 comments on commit 21110c3

Please sign in to comment.