From d8b317b74ca43fe58b903304b98bbf8362bb1949 Mon Sep 17 00:00:00 2001 From: Oscar Arbelaez Date: Sat, 17 Apr 2021 22:07:03 -0500 Subject: [PATCH 1/3] Add some seo things to the index file --- public/index.html | 62 ++++++++++++++++++++++++++++++++++++-------- public/manifest.json | 9 ++++--- 2 files changed, 57 insertions(+), 14 deletions(-) diff --git a/public/index.html b/public/index.html index 2950de6..337c575 100644 --- a/public/index.html +++ b/public/index.html @@ -3,11 +3,18 @@ - + + + + + Tree of Science - - - - + + + + - - - + + + - + - Tree of Science diff --git a/public/manifest.json b/public/manifest.json index cf9db77..4f27875 100644 --- a/public/manifest.json +++ b/public/manifest.json @@ -1,6 +1,9 @@ { + "manifest_version": 2, + "version": "1.0", "short_name": "ToS", - "name": "tos.coreofscience.com", + "description": "Tree of Science allows you to explore bibliographic data from Web of Science and Scopus, it digests this bibliographic information and uses graph analysis to inform you of the most important documents you need to read in order to understand a document.", + "name": "Tree of Science", "icons": [ { "src": "android-icon-36x36.png", @@ -41,6 +44,6 @@ ], "start_url": ".", "display": "standalone", - "theme_color": "#000000", - "background_color": "#ffffff" + "theme_color": "#009d35", + "background_color": "#fcfcfc" } From 80b4d97bb066f6234b2e6863afaa898f3c9bce33 Mon Sep 17 00:00:00 2001 From: Oscar Arbelaez Date: Sat, 17 Apr 2021 22:13:34 -0500 Subject: [PATCH 2/3] Add mising title to image --- src/components/vectors/StarImage.tsx | 2 +- src/components/vectors/TreeOfScience.tsx | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/components/vectors/StarImage.tsx b/src/components/vectors/StarImage.tsx index 0c108a1..028ea0e 100644 --- a/src/components/vectors/StarImage.tsx +++ b/src/components/vectors/StarImage.tsx @@ -1,6 +1,6 @@ import React from "react"; -const StarImgage = ({ ...props }) => ( +const StarImgage = () => ( ( core of science logo ); From 818a71f69df52732ea0c5c0215cbd92e20766dee Mon Sep 17 00:00:00 2001 From: Oscar Arbelaez Date: Sun, 18 Apr 2021 21:12:15 -0500 Subject: [PATCH 3/3] Add titles to inline svg --- src/components/vectors/CancelFile.tsx | 7 ++++++- src/components/vectors/CopyImage.tsx | 3 +++ src/components/vectors/CoreOfScience.tsx | 1 + src/components/vectors/FacebookIcon.tsx | 3 +++ src/components/vectors/GitHubIcon.tsx | 3 +++ src/components/vectors/MoveFirstIcon.tsx | 3 +++ src/components/vectors/StarImage.tsx | 3 +++ src/components/vectors/TreeOfScience.tsx | 4 ++-- src/components/vectors/TwitterIcon.tsx | 3 +++ src/components/vectors/YoutubeIcon.tsx | 9 +++++++-- 10 files changed, 34 insertions(+), 5 deletions(-) diff --git a/src/components/vectors/CancelFile.tsx b/src/components/vectors/CancelFile.tsx index afae414..908a0b2 100644 --- a/src/components/vectors/CancelFile.tsx +++ b/src/components/vectors/CancelFile.tsx @@ -7,7 +7,12 @@ const CancelFile = () => ( fill="none" viewBox="0 0 18 18" > - + + Cancel + + + + ); diff --git a/src/components/vectors/CopyImage.tsx b/src/components/vectors/CopyImage.tsx index 4c3726a..de74aa1 100644 --- a/src/components/vectors/CopyImage.tsx +++ b/src/components/vectors/CopyImage.tsx @@ -7,6 +7,9 @@ const CopyImage = () => ( viewBox="0 0 25 25" fill="none" > + + Copy + diff --git a/src/components/vectors/CoreOfScience.tsx b/src/components/vectors/CoreOfScience.tsx index eb46119..9a7e4cd 100644 --- a/src/components/vectors/CoreOfScience.tsx +++ b/src/components/vectors/CoreOfScience.tsx @@ -13,6 +13,7 @@ const CoreOfScience = ({ ...props }) => ( core of science logo ); diff --git a/src/components/vectors/FacebookIcon.tsx b/src/components/vectors/FacebookIcon.tsx index 17f3258..08ded2d 100644 --- a/src/components/vectors/FacebookIcon.tsx +++ b/src/components/vectors/FacebookIcon.tsx @@ -2,6 +2,9 @@ import React from "react"; const FacebookIcon = () => ( + + Facebook + ); diff --git a/src/components/vectors/GitHubIcon.tsx b/src/components/vectors/GitHubIcon.tsx index 05033e1..073d6b5 100644 --- a/src/components/vectors/GitHubIcon.tsx +++ b/src/components/vectors/GitHubIcon.tsx @@ -2,6 +2,9 @@ import React from "react"; const GitHubIcon = () => ( + + GitHub + ); diff --git a/src/components/vectors/MoveFirstIcon.tsx b/src/components/vectors/MoveFirstIcon.tsx index 49094eb..99d7d22 100644 --- a/src/components/vectors/MoveFirstIcon.tsx +++ b/src/components/vectors/MoveFirstIcon.tsx @@ -7,6 +7,9 @@ const MoveFirstIcon = () => ( fill="none" xmlns="http://www.w3.org/2000/svg" > + + Move Up + ( viewBox="0 0 25 23" className="star-svg-icon" > + + Star + diff --git a/src/components/vectors/TreeOfScience.tsx b/src/components/vectors/TreeOfScience.tsx index 3819670..60434ba 100644 --- a/src/components/vectors/TreeOfScience.tsx +++ b/src/components/vectors/TreeOfScience.tsx @@ -22,8 +22,8 @@ const TREE_OF_SCIENCE = ` const TreeOfScience = ({ ...props }) => ( core of science logo ); diff --git a/src/components/vectors/TwitterIcon.tsx b/src/components/vectors/TwitterIcon.tsx index 03e3d41..57dacc7 100644 --- a/src/components/vectors/TwitterIcon.tsx +++ b/src/components/vectors/TwitterIcon.tsx @@ -2,6 +2,9 @@ import React from "react"; const TwitterIcon = () => ( + + Twitter + ); diff --git a/src/components/vectors/YoutubeIcon.tsx b/src/components/vectors/YoutubeIcon.tsx index 80afb16..b4c7ec9 100644 --- a/src/components/vectors/YoutubeIcon.tsx +++ b/src/components/vectors/YoutubeIcon.tsx @@ -2,8 +2,13 @@ import React from "react"; const YoutubeIcon = () => ( - - + + YouTube + + + + + );