Skip to content

Commit 7296905

Browse files
committed
update a few things
1 parent 366da3a commit 7296905

File tree

5 files changed

+21
-26
lines changed

5 files changed

+21
-26
lines changed

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"@types/react-linkify": "^1.0.4",
5656
"@types/react-select": "^5.0.1",
5757
"@types/react-transition-group": "^4.4.11",
58-
"@vitejs/plugin-react-swc": "^3.7.2",
58+
"@vitejs/plugin-react-swc": "^3.8.0",
5959
"@vitest/browser": "^2.1.6",
6060
"eslint": "^9.15.0",
6161
"eslint-plugin-react-hooks": "^5.1.0-rc.0",

src/components/Footer.tsx

Lines changed: 10 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
import React, { FC } from "react";
2-
import { AiOutlineHeart } from "react-icons/ai";
3-
import { BsCodeSlash } from "react-icons/bs";
2+
import { FaGithub } from "react-icons/fa";
43
import { Link } from "react-router-dom";
54

65
import Matomo from "./Matomo";
@@ -10,29 +9,25 @@ const Footer: FC = () => (
109
<div className="d-flex flex-row align-items-center">
1110
<Link to="/" className="flex-shrink-0 me-2 p-0">
1211
<img
13-
src={import.meta.env.BASE_URL + "/logo.svg"}
12+
src={import.meta.env.BASE_URL + "/deepgit_logo.png"}
1413
alt="Retina logo"
1514
style={{ height: "1.2em" }}
1615
className="me-1"
1716
/>
1817
</Link>
1918
<div className="flex-grow-1">
20-
<Link to="/">Retina</Link> is built with <AiOutlineHeart /> by{" "}
21-
<a href="https://www.ouestware.com/en" target="_blank" rel="noreferrer">
22-
OuestWare
19+
<Link to="/">DeepGit</Link> is a joint effort between {" "}
20+
<a href="https://github.com/data-exp-lab" target="_blank" rel="noreferrer">
21+
Data Exploration Lab
2322
</a>
24-
,{" "}
25-
<a href="https://cis.cnrs.fr" className="text-nowrap" target="_blank" rel="noreferrer">
26-
CNRS CIS
23+
{" "} and {" "}
24+
<a href="https://github.com/numfocus/moss" className="text-nowrap" target="_blank" rel="noreferrer">
25+
MOSS
2726
</a>{" "}
28-
and{" "}
29-
<a href="http://www.tommasoventurini.it/" className="text-nowrap" target="_blank" rel="noreferrer">
30-
Tommaso Venturini
31-
</a>
3227
</div>
3328
<div className="flex-shrink-0 ms-2">
34-
<a href="https://gitlab.com/ouestware/retina" target="_blank" rel="noreferrer">
35-
<BsCodeSlash />
29+
<a href="https://github.com/data-exp-lab/deepgit" target="_blank" rel="noreferrer">
30+
<FaGithub size={20} />
3631
</a>
3732
</div>
3833
</div>

src/views/EditionPanel.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -113,12 +113,12 @@ const EditionPanel: FC<{ isExpanded: boolean }> = ({ isExpanded }) => {
113113

114114
<h1 className="fs-4 mt-4 mb-4">
115115
<img
116-
src={import.meta.env.BASE_URL + "/logo.svg"}
117-
alt="Retina logo"
118-
style={{ height: "1em" }}
116+
src={import.meta.env.BASE_URL + "/deepgit_logo.png"}
117+
alt="DeepGit logo"
118+
style={{ height: "1em", filter: "invert(1)" }} // Inverts colors (turns black to white)
119119
className="me-1 mb-1"
120-
/>{" "}
121-
Welcome to Retina
120+
/>
121+
Welcome to DeepGit
122122
</h1>
123123

124124
<p>
@@ -138,7 +138,7 @@ const EditionPanel: FC<{ isExpanded: boolean }> = ({ isExpanded }) => {
138138
</p>
139139
{!navState.local && (
140140
<p className="fst-italic mb-0">
141-
PS: This panel is only here to help you configure Retina. Unless you specifically want it to be, it will
141+
PS: This panel is only here to help you configure DeepGit. Unless you specifically want it to be, it will
142142
not be visible to the users you share your graph with, if you click the{" "}
143143
<button
144144
type="button"

src/views/HomeView.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,18 +36,18 @@ const HomeView: FC = () => {
3636
<main className="home-view">
3737
<div className="title-block">
3838
<div className="text-center">
39-
<img src={import.meta.env.BASE_URL + "/logo.svg"} alt="Retina Logo" className="mb-3" />
39+
<img src={import.meta.env.BASE_URL + "/deepgit_logo.png"} alt="DeepGit Logo" className="mb-3" style={{ width: "120px", height: "auto" }} />
4040
</div>
4141
<h1 className="mb-4">
4242
<span className="position-relative">
43-
Retina{" "}
43+
DeepGit{" "}
4444
<small className="position-absolute top-0 start-100 translate-middle badge rounded-pill bg-warning fs-6">
4545
beta
4646
</small>
4747
</span>
4848
</h1>
4949
<h2 className="h4 text-center">
50-
Retina is a web application that helps you share your graph visualizations online.
50+
DeepGit is a free, open-source web application designed to help researchers and research software engineers discover and explore research software within specific domains
5151
</h2>
5252
<h2 className="h5 text-center">
5353
It currently accepts <a href="http://gexf.net/">GEXF</a> and{" "}

0 commit comments

Comments
 (0)