Skip to content

Commit d7a5fe0

Browse files
committed
download button, favicon and logo updates
1 parent 843add2 commit d7a5fe0

File tree

7 files changed

+6
-5
lines changed

7 files changed

+6
-5
lines changed

client/assets/favicon.ico

830 Bytes
Binary file not shown.

client/assets/jester-logo-4.png

42.3 KB
Loading

client/components/Footer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ export const Footer = () => {
1616
>
1717
<Typography variant="body2" color="text.secondary" align="center">
1818
{'Copyright © '}
19-
<Link color="inherit" href="https://jester.software">
20-
jester.software
19+
<Link color="inherit" href="https://github.com/oslabs-beta/Jester">
20+
Jester
2121
</Link>{' '}
2222
{new Date().getFullYear()}
2323
{'.'}

client/components/NavBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const Navbar = () => {
4646
<AppBar position="static">
4747
<Toolbar>
4848
<Link to="/">
49-
<img alt="logo" src="../assets/logo-jester.png" />
49+
<img alt="logo" src="../assets/jester-logo-4.png" />
5050
</Link>
5151
<Typography
5252
variant="h6"

client/index.html

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
<meta charset="UTF-8" />
44
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
6+
<link rel="shortcut icon" type="image/jpg" href="assets/favicon.ico"/>
67
<link href="http://localhost:3000/stylesheets/styles.scss" rel="stylesheet" />
78
<link href="./stylesheets/styles.scss" rel="stylesheet" />
89
<link rel="preconnect" href="https://fonts.googleapis.com">

index.html

Lines changed: 0 additions & 1 deletion
This file was deleted.

server/server.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,13 +33,14 @@ app.use('/auth', authRoutes);
3333
app.use('/api/tests', testsRoutes);
3434
app.use('/api/project', projectRoutes);
3535
app.use('/api/clipboard', clipboardRoutes);
36+
// app.use('/dist', express.static(path.join(__dirname, '../dist')));
3637
app.use('/assets', express.static(path.join(__dirname, '../client/assets')));
3738
app.use(
3839
'/stylesheets',
3940
express.static(path.join(__dirname, '../client/stylesheets'))
4041
);
4142

42-
// Serve bundle.js file
43+
// // Serve bundle.js file
4344
app.get('/bundle.js', (req: Request, res: Response) => {
4445
return res.status(200).sendFile(path.join(__dirname, '../dist/bundle.js'));
4546
});

0 commit comments

Comments
 (0)