diff --git a/front/app/_orgs/[orgslug]/settings/layout.tsx b/front/app/_orgs/[orgslug]/settings/layout.tsx index 3a9366ff..6ea3bb6b 100644 --- a/front/app/_orgs/[orgslug]/settings/layout.tsx +++ b/front/app/_orgs/[orgslug]/settings/layout.tsx @@ -2,8 +2,10 @@ import React, { createContext, useState } from 'react' import { styled } from '@stitches/react'; import Link from 'next/link'; +import LearnHouseWhiteLogo from '@public/learnhouse_text_white.png'; import { AuthContext } from '@components/Security/AuthProvider'; import Avvvatars from 'avvvatars-react'; +import Image from 'next/image'; @@ -15,9 +17,13 @@ function SettingsLayout({ children, params }: { children: React.ReactNode, param <>
+ + + Learnhouse logo {auth.isAuthenticated && ( )} + Account
    @@ -46,12 +52,24 @@ const Main = styled('div', { }) const LeftWrapper = styled('div', { - width: '250px', + width: '270px', background: "linear-gradient(348.55deg, #010101 -8.61%, #343434 105.52%);", height: '100vh', padding: '20px', }) +const LeftTopArea = styled('div', { + display: 'flex', + marginLeft: '20px', + + alignItems: 'center', + + img: { + marginRight: '20px', + } + +}) + const LeftMenuWrapper = styled('div', { display: 'flex', flexDirection: 'column', diff --git a/front/public/learnhouse_text_white.png b/front/public/learnhouse_text_white.png new file mode 100644 index 00000000..74875614 Binary files /dev/null and b/front/public/learnhouse_text_white.png differ