From 1fa468d470fe238d1610eb956188201d47eca145 Mon Sep 17 00:00:00 2001
From: Corey Cox <69321580+amc-corey-cox@users.noreply.github.com>
Date: Wed, 11 Sep 2024 14:17:09 -0500
Subject: [PATCH] Landing tweaks (#804)
### Related issues
- Tweaks the order of resources on the landing page... moving search
below the flagship resources.
### Summary
- adds UBERON svg icon for resouces bar.
- changes order of resources and search bar on landing page
### Checks
- [ X ] All tests have passed (or issues created for failing tests)
---
frontend/src/assets/icons/resource-uberon.svg | 64 +++++++++++++++++++
frontend/src/pages/PageHome.vue | 2 +-
frontend/src/pages/resources.json | 44 ++++++-------
3 files changed, 87 insertions(+), 23 deletions(-)
create mode 100644 frontend/src/assets/icons/resource-uberon.svg
diff --git a/frontend/src/assets/icons/resource-uberon.svg b/frontend/src/assets/icons/resource-uberon.svg
new file mode 100644
index 000000000..2cdf77160
--- /dev/null
+++ b/frontend/src/assets/icons/resource-uberon.svg
@@ -0,0 +1,64 @@
+
+
diff --git a/frontend/src/pages/PageHome.vue b/frontend/src/pages/PageHome.vue
index b533a05d7..3da2ea6d1 100644
--- a/frontend/src/pages/PageHome.vue
+++ b/frontend/src/pages/PageHome.vue
@@ -3,7 +3,6 @@
-->
-
+
What is Monarch?
diff --git a/frontend/src/pages/resources.json b/frontend/src/pages/resources.json
index 7f638269b..7fa8c2972 100644
--- a/frontend/src/pages/resources.json
+++ b/frontend/src/pages/resources.json
@@ -1,19 +1,11 @@
{
- "Standards": [
+ "Flagship": [
{
- "description": "An ISO-endorsed open standard for sharing disease and phenotype information.",
- "icon": "resource-phenopackets",
- "link": "http://phenopackets.org/",
- "name": "Phenopackets"
+ "description": "The standard vocabulary of human phenotypic abnormalities.",
+ "icon": "resource-hpo",
+ "link": "https://hpo.jax.org/app/",
+ "name": "HPO"
},
- {
- "description": "Explore gene, disease, and phenotype data across species.",
- "icon": "resource-monarch",
- "link": "/explore",
- "name": "Knowledge Graph"
- }
- ],
- "Ontologies": [
{
"description": "Harmonizing disease definitions globally.",
"icon": "resource-mondo",
@@ -21,11 +13,13 @@
"name": "Mondo"
},
{
- "description": "The standard vocabulary of human phenotypic abnormalities.",
- "icon": "resource-hpo",
- "link": "https://hpo.jax.org/app/",
- "name": "HPO"
- },
+ "description": "A tool to find potential disease-causing variants in WES and WGS.",
+ "icon": "resource-exomiser",
+ "link": "https://exomiser.monarchinitiative.org/exomiser/",
+ "name": "Exomiser"
+ }
+ ],
+ "More Otologies": [
{
"description": "An integrated cross-species anatomy ontology.",
"icon": "resource-uberon",
@@ -35,10 +29,16 @@
],
"Tools": [
{
- "description": "A tool to find potential disease-causing variants in WES and WGS.",
- "icon": "resource-exomiser",
- "link": "https://exomiser.monarchinitiative.org/exomiser/",
- "name": "Exomiser"
+ "description": "Explore gene, disease, and phenotype data across species.",
+ "icon": "resource-monarch",
+ "link": "/explore",
+ "name": "Knowledge Graph"
+ },
+ {
+ "description": "An ISO-endorsed open standard for sharing disease and phenotype information.",
+ "icon": "resource-phenopackets",
+ "link": "http://phenopackets.org/",
+ "name": "Phenopackets"
}
]
}