Skip to content

Commit 69b7a45

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

18 files changed

+23
-19
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="var(--hyf-beige)"
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/components/SidebarJobPath.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const SidebarJobPath = ({ jobPath }: JobPathProps) => {
1818
const jobChipColor = (status: JobPath | string) => {
1919
switch (status) {
2020
case JobPath.Searching:
21-
return 'primary';
21+
return 'info';
2222
case JobPath.Internship:
2323
case JobPath.TechJob:
2424
return 'success';

client/src/components/SidebarLearningStatus.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export const SidebarLearningStatus = ({ learningStatus }: LearningStatusProps) =
1717
const chipColor = (status: LearningStatus | undefined) => {
1818
switch (status) {
1919
case LearningStatus.Studying:
20-
return 'primary';
20+
return 'info';
2121
case LearningStatus.Graduated:
2222
return 'success';
2323
case LearningStatus.OnHold:

0 commit comments

Comments
 (0)