Skip to content

Commit fb65931

Browse files
committed
Update branding assets and styles according to the new design
1 parent 43aba6d commit fb65931

File tree

15 files changed

+11
-17
lines changed

15 files changed

+11
-17
lines changed

client/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<html lang="en">
33
<head>
44
<meta charset="UTF-8" />
5-
<link href="src/assets/HYF_icon.jpeg" rel="icon" type="image/x-icon">
5+
<link href="src/assets/favicon.png" rel="icon" type="image/x-icon" />
66
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
77
<title>Dojo Project</title>
88
</head>

client/src/assets/HYF.png

-112 KB
Binary file not shown.

client/src/assets/HYF_icon.jpeg

-19.6 KB
Binary file not shown.

client/src/assets/favicon.png

2.25 KB
Loading
307 KB
Loading

client/src/assets/hyf-logo-red.png

294 KB
Loading

client/src/components/ProfileSidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ export const ProfileSidebar = ({ traineeId }: ProfileSidebarProps) => {
3131
alignItems="center"
3232
gap={2}
3333
color="black"
34-
bgcolor="#d1fbe6"
34+
bgcolor="#FAF5D9"
3535
height="100vh"
3636
paddingX={4}
3737
paddingY={4}

client/src/components/ResponsiveNavBar.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import * as React from 'react';
2-
import HYFLogo from '../assets/HYF_logo.svg';
2+
import HYFLogo from '../assets/hyf-logo-beige.png';
33
import SearchIcon from '@mui/icons-material/Search';
44
import MenuIcon from '@mui/icons-material/Menu';
55
import { useAuth } from '../hooks';
@@ -64,12 +64,12 @@ export const ResponsiveNavBar = () => {
6464

6565
return (
6666
<Box sx={{ flexGrow: 1 }}>
67-
<AppBar position="static" sx={{ bgcolor: 'black' }}>
67+
<AppBar position="static" sx={{ backgroundColor: '#5E1600' }}>
6868
<Container maxWidth={false}>
6969
<Toolbar disableGutters>
7070
<Box component="div">
7171
<Link to="/home">
72-
<img src={HYFLogo} height="60" alt="HYF navbar logo" className="hyf-navbar-logo-img" />
72+
<img src={HYFLogo} height="40" alt="HYF navbar logo" className="hyf-navbar-logo-img" />
7373
</Link>
7474
</Box>
7575

client/src/pages/LoginPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import HYFLogo from '../assets/HYF_logo.svg';
1+
import HYFLogo from '../assets/hyf-logo-red.png';
22
import { useAuth } from '../hooks';
33
import { ErrorBox } from '../components';
44
import { Button, Stack } from '@mui/material';

client/src/pages/SearchPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { ErrorBox, SearchBar, SearchResultsList } from '../components';
22
import { useCallback, useEffect, useState } from 'react';
33

44
import { Box } from '@mui/material';
5-
import HYFLogo from '../assets/HYF_logo.svg';
5+
import HYFLogo from '../assets/hyf-logo-red.png';
66
import { useTraineeSearchData } from '../hooks/useTraineeSearchData';
77

88
/**

0 commit comments

Comments
 (0)