diff --git a/frontend/public/img/logo.svg b/frontend/public/img/logo.svg
new file mode 100644
index 00000000..708e1282
--- /dev/null
+++ b/frontend/public/img/logo.svg
@@ -0,0 +1,5 @@
+
diff --git a/frontend/src/components/atoms/Logo/Logo.tsx b/frontend/src/components/atoms/Logo/Logo.tsx
new file mode 100644
index 00000000..64e20089
--- /dev/null
+++ b/frontend/src/components/atoms/Logo/Logo.tsx
@@ -0,0 +1,10 @@
+import React from 'react';
+import { PATH_FOR_IMAGES } from '../../atoms/constants/imgPaths';
+
+export default function Logo() {
+ return (
+
+
+
+ );
+}
diff --git a/frontend/src/components/pages/Integramic/Integramic.tsx b/frontend/src/components/pages/Integramic/Integramic.tsx
index e55589b6..7211f18d 100644
--- a/frontend/src/components/pages/Integramic/Integramic.tsx
+++ b/frontend/src/components/pages/Integramic/Integramic.tsx
@@ -5,6 +5,7 @@ import ClickButton from '../../atoms/Button/ClickButton';
import UserAvatarAndName from '../../molecules/UserAvatarAndName/UserAvatarAndName';
import { BrowserRouter as Router, Route, Switch } from 'react-router-dom';
import { PATH_FOR_MAIN_VIEW } from '../../atoms/constants/routerPaths';
+import Logo from '../../atoms/Logo/Logo';
const onClick = () => {};
@@ -19,6 +20,7 @@ export function Integramic() {
onClick()} />
+