Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix(frontend): nesis logo #2

Merged
merged 1 commit into from
Apr 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

<p align="center">
<img height="100" src="https://github.com/ametnes/.github/raw/update-emojis/nesis/frontend/client/src/images/NosisIcon.svg" alt="Nesis" title="Nesis">
<img height="100" src="https://raw.githubusercontent.com/ametnes/nesis/main/nesis/frontend/client/src/images/NesisIcon.svg" alt="Nesis" title="Nesis">
</p>

![Frontend](https://github.com/ametnes/nesis/actions/workflows/test_frontend.yml/badge.svg) ![API](https://github.com/ametnes/nesis/actions/workflows/test_api.yml/badge.svg) ![RAG](https://github.com/ametnes/nesis/actions/workflows/test_rag.yml/badge.svg) [![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
Expand Down
2 changes: 1 addition & 1 deletion nesis/frontend/client/src/components/MenuHeader.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { useHistory } from 'react-router-dom';
import { PersonCircle, QuestionSquare } from 'react-bootstrap-icons';
import { useCurrentSession, useSignOut } from '../SessionContext';
import { ReactComponent as Hamburger } from '../images/Hamburger.svg';
import { ReactComponent as Logo } from '../images/NosisIcon.svg';
import { ReactComponent as Logo } from '../images/NesisIcon.svg';
import styled from 'styled-components/macro';
import { device } from '../utils/breakpoints';
import client from '../utils/httpClient';
Expand Down
2,575 changes: 0 additions & 2,575 deletions nesis/frontend/client/src/images/Logo.svg

This file was deleted.

Binary file added nesis/frontend/client/src/images/NesisIcon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
368 changes: 368 additions & 0 deletions nesis/frontend/client/src/images/NesisIcon.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 removed nesis/frontend/client/src/images/NosisIcon.png
Binary file not shown.
167 changes: 0 additions & 167 deletions nesis/frontend/client/src/images/NosisIcon.svg

This file was deleted.

2 changes: 1 addition & 1 deletion nesis/frontend/client/src/pages/SignInPage.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import React, { useContext, useState } from 'react';
import styled from 'styled-components';
import { ReactComponent as Nesis } from '../images/NosisIcon.svg';
import { ReactComponent as Nesis } from '../images/NesisIcon.svg';
import { Formik, Form as FormikForm } from 'formik';
import { TextField } from '../components/form';
import { required } from '../components/form/validators';
Expand Down