Skip to content

Commit

Permalink
front: new logo & assets
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolaswurtz committed Dec 4, 2023
1 parent eb3f61f commit cc3621f
Show file tree
Hide file tree
Showing 44 changed files with 108 additions and 246 deletions.
2 changes: 1 addition & 1 deletion assets/branding/osrd_small.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified front/public/android-chrome-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed front/public/android-chrome-256x256.png
Binary file not shown.
Binary file added front/public/android-chrome-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified front/public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion front/public/browserconfig.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<msapplication>
<tile>
<square150x150logo src="/mstile-150x150.png"/>
<TileColor>#da532c</TileColor>
<TileColor>#2d89ef</TileColor>
</tile>
</msapplication>
</browserconfig>
Binary file modified front/public/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified front/public/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified front/public/favicon.ico
Binary file not shown.
4 changes: 2 additions & 2 deletions front/public/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"type": "image/png"
},
{
"src": "/android-chrome-256x256.png",
"sizes": "256x256",
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
Expand Down
Binary file removed front/public/mapbox-icon.png
Binary file not shown.
Binary file modified front/public/mstile-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed front/public/red-disc.png
Binary file not shown.
104 changes: 50 additions & 54 deletions front/public/safari-pinned-tab.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
4 changes: 2 additions & 2 deletions front/public/site.webmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
"type": "image/png"
},
{
"src": "/android-chrome-256x256.png",
"sizes": "256x256",
"src": "/android-chrome-512x512.png",
"sizes": "512x512",
"type": "image/png"
}
],
Expand Down
2 changes: 1 addition & 1 deletion front/src/applications/editor/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useSelector } from 'react-redux';
import { Route, Routes } from 'react-router-dom';
import { GoLock } from 'react-icons/go';

import logo from 'assets/pictures/home/editor.svg';
import logo from 'assets/pictures/home/editor-white.svg';
import NavBarSNCF from 'common/BootstrapSNCF/NavBarSNCF';
import { osrdEditoastApi } from 'common/api/osrdEditoastApi';
import { getInfraID } from 'reducers/osrdconf/selectors';
Expand Down
7 changes: 1 addition & 6 deletions front/src/applications/operationalStudies/Home.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ import FilterTextField from 'applications/operationalStudies/components/FilterTe
import ProjectSelectionToolbar from 'modules/project/components/ProjectSelectionToolbar';
import ProjectCard from 'modules/project/components/ProjectCard';
import ProjectCardEmpty from 'modules/project/components/ProjectCardEmpty';
import osrdLogo from 'assets/pictures/osrd.png';
import logo from 'assets/pictures/views/projects.svg';
import logo from 'assets/pictures/home/operationalStudies-white.svg';
import NavBarSNCF from 'common/BootstrapSNCF/NavBarSNCF';
import OptionsSNCF from 'common/BootstrapSNCF/OptionsSNCF';
import { Spinner } from 'common/Loader';
Expand Down Expand Up @@ -155,10 +154,6 @@ export default function HomeOperationalStudies() {
<NavBarSNCF appName={<div className="navbar-breadcrumbs">{t('projects')}</div>} logo={logo} />
<main className="mastcontainer mastcontainer-no-mastnav">
<div className="p-3">
<div className="application-title d-none">
<img src={osrdLogo} alt="OSRD logo" />
<h1>Open Source Railway Designer</h1>
</div>
<div className="projects-toolbar">
<div className="h1 mb-0">
{t('projectsCount', { count: projectsList ? projectsList.length : 0 })}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useEffect, useMemo, useState } from 'react';
import NavBarSNCF from 'common/BootstrapSNCF/NavBarSNCF';
import logo from 'assets/pictures/views/studies.svg';
import logo from 'assets/pictures/home/operationalStudies-white.svg';
import { useTranslation } from 'react-i18next';
import nextId from 'react-id-generator';
import StudyCard from 'modules/study/components/StudyCard';
Expand Down
Loading

0 comments on commit cc3621f

Please sign in to comment.