Skip to content
This repository has been archived by the owner on Feb 23, 2022. It is now read-only.

Commit

Permalink
Merge pull request #312 from multinet-app/waxlamp/more-placards
Browse files Browse the repository at this point in the history
Add two more placards to front page
  • Loading branch information
waxlamp committed Feb 12, 2020
2 parents a959cf7 + d840897 commit 8a62ec7
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 7 deletions.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file added client/src/assets/placard/boston2.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added client/src/assets/placard/miserables2.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion client/src/components/Sidebar.vue
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
class="pb-0 pt-2 px-0"
cols="2"
>
<img src="../assets/app_logo.png" alt="Multinet" width="100%">
<img src="../assets/logo/app_logo.png" alt="Multinet" width="100%">
</v-col>
<v-col class="text-left" cols="6">
Multinet
Expand Down
24 changes: 18 additions & 6 deletions client/src/views/FrontPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -110,31 +110,43 @@ export default Vue.extend ({
return {
collabs: [
{
logo: require('../assets/utah_logo.png'),
logo: require('../assets/logo/utah_logo.png'),
},
{
logo: require('../assets/Kitware_Logo.png'),
logo: require('../assets/logo/Kitware_Logo.png'),
},
{
logo: require('../assets/vdl_logo.png'),
logo: require('../assets/logo/vdl_logo.png'),
},
{
logo: require('../assets/nsf_logo.png'),
logo: require('../assets/logo/nsf_logo.png'),
},
],
samples: [
{
title: 'Paul Revere - Node Link Diagram',
image: require('../assets/boston.jpg'),
image: require('../assets/placard/boston.jpg'),
text: 'Explore the Paul Revere dataset using an interactive and beautiful node-link diagram. Discover the figures coordinating a pivotal event in history!',
href: '/nodelink/?workspace=boston&graph=boston',
},
{
title: 'Les Miserables - Adjacency Matrix',
image: require('../assets/miserables.jpg'),
image: require('../assets/placard/miserables.jpg'),
text: 'Explore the Les Miserables dataset using an interactive adjacency matrix. See the factions and relationships for yourself!',
href: '/adjmatrix/?workspace=miserables&graph=miserables',
},
{
title: 'Les Miserables - Node Link Diagram',
image: require('../assets/placard/miserables2.jpg'),
text: 'The characters of Les Miserables, laid out in a colorful and interactive node link diagram.',
href: '/nodelink/?workspace=miserables&graph=miserables',
},
{
title: 'Paul Revere - Adjacency Matrix',
image: require('../assets/placard/boston2.jpg'),
text: 'See the relationships between Paul Revere and his contemporaries through an adjacency matrix layout.',
href: '/adjmatrix/?workspace=boston&graph=boston',
},
],
};
},
Expand Down

0 comments on commit 8a62ec7

Please sign in to comment.