diff --git a/vault/public/logo192.png b/vault/public/logo192.png
deleted file mode 100644
index fc44b0a..0000000
Binary files a/vault/public/logo192.png and /dev/null differ
diff --git a/vault/public/logo512.png b/vault/public/logo512.png
deleted file mode 100644
index a4e47a6..0000000
Binary files a/vault/public/logo512.png and /dev/null differ
diff --git a/vault/public/manifest.json b/vault/public/manifest.json
index 080d6c7..f98d721 100644
--- a/vault/public/manifest.json
+++ b/vault/public/manifest.json
@@ -8,13 +8,13 @@
"type": "image/x-icon"
},
{
- "src": "logo192.png",
- "type": "image/png",
+ "src": "vault_logo.jpg",
+ "type": "image/jpg",
"sizes": "192x192"
},
{
- "src": "logo512.png",
- "type": "image/png",
+ "src": "vault_logo.jpg",
+ "type": "image/jpg",
"sizes": "512x512"
}
],
diff --git a/vault/src/App.css b/vault/src/App.css
index 74b5e05..e09cf1d 100644
--- a/vault/src/App.css
+++ b/vault/src/App.css
@@ -1,38 +1,39 @@
.App {
- text-align: center;
-}
-
-.App-logo {
- height: 40vmin;
- pointer-events: none;
-}
-
-@media (prefers-reduced-motion: no-preference) {
+ text-align: center;
+ }
+
.App-logo {
- animation: App-logo-spin infinite 20s linear;
+ height: 40vmin;
+ pointer-events: none;
+ }
+
+ @media (prefers-reduced-motion: no-preference) {
+ .App-logo {
+ animation: App-logo-spin infinite 20s linear;
+ }
+ }
+
+ .App-header {
+ background-color: #282c34;
+ min-height: 100vh;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+ justify-content: center;
+ font-size: calc(10px + 2vmin);
+ color: white;
}
-}
-
-.App-header {
- background-color: #282c34;
- min-height: 100vh;
- display: flex;
- flex-direction: column;
- align-items: center;
- justify-content: center;
- font-size: calc(10px + 2vmin);
- color: white;
-}
-
-.App-link {
- color: #61dafb;
-}
-
-@keyframes App-logo-spin {
- from {
- transform: rotate(0deg);
+
+ .App-link {
+ color: #61dafb;
}
- to {
- transform: rotate(360deg);
+
+ @keyframes App-logo-spin {
+ from {
+ transform: rotate(0deg);
+ }
+ to {
+ transform: rotate(360deg);
+ }
}
-}
+
\ No newline at end of file
diff --git a/vault/src/App.js b/vault/src/App.js
index faee776..ce2944f 100644
--- a/vault/src/App.js
+++ b/vault/src/App.js
@@ -1,9 +1,9 @@
import React from 'react';
-import logo from './logo.svg';
import './App.css';
import { Routes, Route } from 'react-router-dom';
import LoginForm from './Components/LoginForm/LoginForm';
import RegistrationForm from "./Components/RegistrationForm/RegistrationForm";
+import Home from "./Components/Home/Home";
function App() {
@@ -12,6 +12,7 @@ function App() {