Skip to content
This repository was archived by the owner on Feb 2, 2026. It is now read-only.

Commit 10efb8a

Browse files
authored
Merge pull request #72 from gipplab/dev
feat(Naming): Added favicon.ico, title of page, and changed logos to …
2 parents 3d03fe8 + 6af9211 commit 10efb8a

File tree

6 files changed

+7
-11
lines changed

6 files changed

+7
-11
lines changed

public/favicon.ico

11.3 KB
Binary file not shown.

public/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
work correctly both with client-side routing and a non-root public URL.
2525
Learn how to configure a non-root public URL by running `npm run build`.
2626
-->
27-
<title>React App</title>
27+
<title>CS-Insights | Analyze Computer Science Research With the Click of a Button</title>
2828
</head>
2929
<body>
3030
<noscript>You need to enable JavaScript to run this app.</noscript>

public/logo.jpg

1.48 MB
Loading

src/components/ResponsiveAppBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ const ResponsiveAppBar = () => {
8989
color: 'white',
9090
}}
9191
>
92-
<b>D4</b>
92+
<img src="/logo.jpg" width="150px" style={{ marginLeft: '-10px' }}></img>
9393
</Typography>
9494
<Box sx={{ flexGrow: 1, display: { xs: 'none', md: 'flex' } }}>
9595
{pages.map((page) => (

src/routes/home.tsx

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ export default function Home() {
1212

1313
return (
1414
<div style={{ backgroundColor: '#eeeeee' }}>
15-
<Container className="home">
16-
<Stack spacing={2} alignItems="center">
17-
<div className="app-logo">D4</div>
15+
<Container className="home" style={{ display: 'flex', justifyContent: 'center' }}>
16+
<Stack spacing={2} alignItems="center" style={{ marginTop: '-100px' }}>
17+
<img src="/logo.jpg" width="35%"></img>
1818
<Typography variant="h4" fontWeight={'bold'}>
19-
Welcome to the DBLP Discovery Dataset Demo (D4)
19+
Welcome to the CS-Insights Demo
2020
</Typography>
2121
<Typography className="statsHighlight" style={{ margin: '0px' }}>
2222
v{process.env.REACT_APP_VERSION}
@@ -60,10 +60,6 @@ export default function Home() {
6060
</a>
6161
!
6262
</Stack>
63-
<div style={{ width: '50%', color: 'red' }}>
64-
The issues with an out-of-sync state should be fixed. Please report if you still
65-
experience a desynced state.
66-
</div>
6763
<footer
6864
style={{
6965
color: 'gray',

src/tools.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ function useExportFilename(
1717
filter: Filter,
1818
parameters?: NonFilterParameters
1919
) {
20-
return `d4_${chart}_${route}_${Object.values({ ...filter, ...parameters }).join('_')}`;
20+
return `cs-insights_${chart}_${route}_${Object.values({ ...filter, ...parameters }).join('_')}`;
2121
}
2222

2323
export function useExport(chart: string, route: string, parameters?: NonFilterParameters) {

0 commit comments

Comments
 (0)