diff --git a/README.md b/README.md index a13fc85..b7c582b 100644 --- a/README.md +++ b/README.md @@ -42,13 +42,17 @@ Friend mentor is a lecture provider platform where lectures recorded by students [4. Project Architecture](#4) - [4.1) Flowchart](#4-1) + [4.1) Project structure](#4-1) [4.2) Techs Used](#4-2) + [4.3) Dependencies](#4-3) + [5. Contributors](#5) + + <a name="1"></a> # 1. Backgrounds @@ -138,6 +142,9 @@ npm build <a name="4-2"></a> ## 4.2) Techs Used +<a name="4-3"></a> +## 4.3) Dependancies + <a name="5"></a> # 5. Contributors diff --git a/frontend/.circleci/config.yml b/friends-mentor/.circleci/config.yml similarity index 100% rename from frontend/.circleci/config.yml rename to friends-mentor/.circleci/config.yml diff --git a/frontend/.gitignore b/friends-mentor/.gitignore similarity index 100% rename from frontend/.gitignore rename to friends-mentor/.gitignore diff --git a/frontend/README.md b/friends-mentor/README.md similarity index 100% rename from frontend/README.md rename to friends-mentor/README.md diff --git a/frontend/jsconfig.json b/friends-mentor/jsconfig.json similarity index 100% rename from frontend/jsconfig.json rename to friends-mentor/jsconfig.json diff --git a/frontend/package-lock.json b/friends-mentor/package-lock.json similarity index 100% rename from frontend/package-lock.json rename to friends-mentor/package-lock.json diff --git a/frontend/package.json b/friends-mentor/package.json similarity index 97% rename from frontend/package.json rename to friends-mentor/package.json index dd1b657..77b56fc 100644 --- a/frontend/package.json +++ b/friends-mentor/package.json @@ -1,5 +1,5 @@ { - "name": "frontend", + "name": "friends-mentor", "version": "0.1.0", "private": true, "dependencies": { diff --git a/friends-mentor/public/android-chrome-192x192.png b/friends-mentor/public/android-chrome-192x192.png new file mode 100644 index 0000000..2f0c3ec Binary files /dev/null and b/friends-mentor/public/android-chrome-192x192.png differ diff --git a/friends-mentor/public/android-chrome-512x512.png b/friends-mentor/public/android-chrome-512x512.png new file mode 100644 index 0000000..168640c Binary files /dev/null and b/friends-mentor/public/android-chrome-512x512.png differ diff --git a/friends-mentor/public/favicon-16x16.png b/friends-mentor/public/favicon-16x16.png new file mode 100644 index 0000000..98e8826 Binary files /dev/null and b/friends-mentor/public/favicon-16x16.png differ diff --git a/friends-mentor/public/favicon-32x32.png b/friends-mentor/public/favicon-32x32.png new file mode 100644 index 0000000..f668a6d Binary files /dev/null and b/friends-mentor/public/favicon-32x32.png differ diff --git a/friends-mentor/public/favicon.ico b/friends-mentor/public/favicon.ico new file mode 100644 index 0000000..a86d747 Binary files /dev/null and b/friends-mentor/public/favicon.ico differ diff --git a/frontend/public/index.html b/friends-mentor/public/index.html similarity index 98% rename from frontend/public/index.html rename to friends-mentor/public/index.html index 566f178..b1b40ad 100644 --- a/frontend/public/index.html +++ b/friends-mentor/public/index.html @@ -24,7 +24,7 @@ work correctly both with client-side routing and a non-root public URL. Learn how to configure a non-root public URL by running `npm run build`. --> - <title>React App</title> + <title>Friends Mentor</title> </head> <body> <noscript>You need to enable JavaScript to run this app.</noscript> diff --git a/frontend/public/logo192.png b/friends-mentor/public/logo192.png similarity index 100% rename from frontend/public/logo192.png rename to friends-mentor/public/logo192.png diff --git a/frontend/public/logo512.png b/friends-mentor/public/logo512.png similarity index 100% rename from frontend/public/logo512.png rename to friends-mentor/public/logo512.png diff --git a/frontend/public/manifest.json b/friends-mentor/public/manifest.json similarity index 100% rename from frontend/public/manifest.json rename to friends-mentor/public/manifest.json diff --git a/frontend/public/robots.txt b/friends-mentor/public/robots.txt similarity index 100% rename from frontend/public/robots.txt rename to friends-mentor/public/robots.txt diff --git a/frontend/src/App.css b/friends-mentor/src/App.css similarity index 100% rename from frontend/src/App.css rename to friends-mentor/src/App.css diff --git a/frontend/src/App.js b/friends-mentor/src/App.js similarity index 100% rename from frontend/src/App.js rename to friends-mentor/src/App.js diff --git a/frontend/src/App.test.js b/friends-mentor/src/App.test.js similarity index 100% rename from frontend/src/App.test.js rename to friends-mentor/src/App.test.js diff --git a/frontend/src/components/CertificateFrame.jsx b/friends-mentor/src/components/CertificateFrame.jsx similarity index 100% rename from frontend/src/components/CertificateFrame.jsx rename to friends-mentor/src/components/CertificateFrame.jsx diff --git a/frontend/src/components/Components.jsx b/friends-mentor/src/components/Components.jsx similarity index 100% rename from frontend/src/components/Components.jsx rename to friends-mentor/src/components/Components.jsx diff --git a/frontend/src/components/GradeSelect.jsx b/friends-mentor/src/components/GradeSelect.jsx similarity index 96% rename from frontend/src/components/GradeSelect.jsx rename to friends-mentor/src/components/GradeSelect.jsx index ca401c8..0be0d5b 100644 --- a/frontend/src/components/GradeSelect.jsx +++ b/friends-mentor/src/components/GradeSelect.jsx @@ -10,7 +10,7 @@ function GradeSelect(props){ var six = "đźď¸6th grade"; var seven = "đ7th grade"; var eight = "đ8th grade"; - var nine = "đ9th grade"; + var nine = "đ9th grade"; var ten = "đ10th grade"; var eleven = "đ11th grade"; var twelve = "đ12th grade"; @@ -20,7 +20,7 @@ function GradeSelect(props){ six = "đźď¸6th grade"; seven = "đ7th grade"; eight = "đ8th grade"; - nine = "đ9th grade"; + nine = "đ9th grade"; ten = "đ10th grade"; eleven = "đ11th grade"; twelve = "đ12th grade"; diff --git a/frontend/src/components/HorizontalInput.jsx b/friends-mentor/src/components/HorizontalInput.jsx similarity index 100% rename from frontend/src/components/HorizontalInput.jsx rename to friends-mentor/src/components/HorizontalInput.jsx diff --git a/frontend/src/components/LectureBox.jsx b/friends-mentor/src/components/LectureBox.jsx similarity index 100% rename from frontend/src/components/LectureBox.jsx rename to friends-mentor/src/components/LectureBox.jsx diff --git a/frontend/src/components/LecturePlayer.jsx b/friends-mentor/src/components/LecturePlayer.jsx similarity index 100% rename from frontend/src/components/LecturePlayer.jsx rename to friends-mentor/src/components/LecturePlayer.jsx diff --git a/frontend/src/components/LikeEmoji.jsx b/friends-mentor/src/components/LikeEmoji.jsx similarity index 100% rename from frontend/src/components/LikeEmoji.jsx rename to friends-mentor/src/components/LikeEmoji.jsx diff --git a/frontend/src/components/RecentLectures.jsx b/friends-mentor/src/components/RecentLectures.jsx similarity index 100% rename from frontend/src/components/RecentLectures.jsx rename to friends-mentor/src/components/RecentLectures.jsx diff --git a/frontend/src/components/ThemedToast.jsx b/friends-mentor/src/components/ThemedToast.jsx similarity index 100% rename from frontend/src/components/ThemedToast.jsx rename to friends-mentor/src/components/ThemedToast.jsx diff --git a/frontend/src/components/TopBar.jsx b/friends-mentor/src/components/TopBar.jsx similarity index 100% rename from frontend/src/components/TopBar.jsx rename to friends-mentor/src/components/TopBar.jsx diff --git a/frontend/src/components/TrendingLecture.jsx b/friends-mentor/src/components/TrendingLecture.jsx similarity index 100% rename from frontend/src/components/TrendingLecture.jsx rename to friends-mentor/src/components/TrendingLecture.jsx diff --git a/frontend/src/components/VerticalInput.jsx b/friends-mentor/src/components/VerticalInput.jsx similarity index 100% rename from frontend/src/components/VerticalInput.jsx rename to friends-mentor/src/components/VerticalInput.jsx diff --git a/frontend/src/fonts/Gulim.ttf b/friends-mentor/src/fonts/Gulim.ttf similarity index 100% rename from frontend/src/fonts/Gulim.ttf rename to friends-mentor/src/fonts/Gulim.ttf diff --git a/frontend/src/fonts/Neverland.otf b/friends-mentor/src/fonts/Neverland.otf similarity index 100% rename from frontend/src/fonts/Neverland.otf rename to friends-mentor/src/fonts/Neverland.otf diff --git a/frontend/src/img/back.png b/friends-mentor/src/img/back.png similarity index 100% rename from frontend/src/img/back.png rename to friends-mentor/src/img/back.png diff --git a/frontend/src/img/blackboard-compressed.jpg b/friends-mentor/src/img/blackboard-compressed.jpg similarity index 100% rename from frontend/src/img/blackboard-compressed.jpg rename to friends-mentor/src/img/blackboard-compressed.jpg diff --git a/frontend/src/img/bottom_safezone.png b/friends-mentor/src/img/bottom_safezone.png similarity index 100% rename from frontend/src/img/bottom_safezone.png rename to friends-mentor/src/img/bottom_safezone.png diff --git a/frontend/src/img/certificateImg.png b/friends-mentor/src/img/certificateImg.png similarity index 100% rename from frontend/src/img/certificateImg.png rename to friends-mentor/src/img/certificateImg.png diff --git a/frontend/src/img/changeLang.png b/friends-mentor/src/img/changeLang.png similarity index 100% rename from frontend/src/img/changeLang.png rename to friends-mentor/src/img/changeLang.png diff --git a/frontend/src/img/clear.png b/friends-mentor/src/img/clear.png similarity index 100% rename from frontend/src/img/clear.png rename to friends-mentor/src/img/clear.png diff --git a/frontend/src/img/gohome.png b/friends-mentor/src/img/gohome.png similarity index 100% rename from frontend/src/img/gohome.png rename to friends-mentor/src/img/gohome.png diff --git a/frontend/src/img/home.png b/friends-mentor/src/img/home.png similarity index 100% rename from frontend/src/img/home.png rename to friends-mentor/src/img/home.png diff --git a/frontend/src/img/left.png b/friends-mentor/src/img/left.png similarity index 100% rename from frontend/src/img/left.png rename to friends-mentor/src/img/left.png diff --git a/frontend/src/img/mainlogo.png b/friends-mentor/src/img/mainlogo.png similarity index 100% rename from frontend/src/img/mainlogo.png rename to friends-mentor/src/img/mainlogo.png diff --git a/frontend/src/img/profile.png b/friends-mentor/src/img/profile.png similarity index 100% rename from frontend/src/img/profile.png rename to friends-mentor/src/img/profile.png diff --git a/frontend/src/img/project-flow2.drawio.png b/friends-mentor/src/img/project-flow2.drawio.png similarity index 100% rename from frontend/src/img/project-flow2.drawio.png rename to friends-mentor/src/img/project-flow2.drawio.png diff --git a/frontend/src/img/right.png b/friends-mentor/src/img/right.png similarity index 100% rename from frontend/src/img/right.png rename to friends-mentor/src/img/right.png diff --git a/frontend/src/img/signature.png b/friends-mentor/src/img/signature.png similarity index 100% rename from frontend/src/img/signature.png rename to friends-mentor/src/img/signature.png diff --git a/frontend/src/img/top_safezone.png b/friends-mentor/src/img/top_safezone.png similarity index 100% rename from frontend/src/img/top_safezone.png rename to friends-mentor/src/img/top_safezone.png diff --git a/frontend/src/img/white.png b/friends-mentor/src/img/white.png similarity index 100% rename from frontend/src/img/white.png rename to friends-mentor/src/img/white.png diff --git a/frontend/src/index.css b/friends-mentor/src/index.css similarity index 100% rename from frontend/src/index.css rename to friends-mentor/src/index.css diff --git a/frontend/src/index.js b/friends-mentor/src/index.js similarity index 100% rename from frontend/src/index.js rename to friends-mentor/src/index.js diff --git a/frontend/src/pages/AxiosTestPage.jsx b/friends-mentor/src/pages/AxiosTestPage.jsx similarity index 100% rename from frontend/src/pages/AxiosTestPage.jsx rename to friends-mentor/src/pages/AxiosTestPage.jsx diff --git a/frontend/src/pages/CertificatePage.jsx b/friends-mentor/src/pages/CertificatePage.jsx similarity index 100% rename from frontend/src/pages/CertificatePage.jsx rename to friends-mentor/src/pages/CertificatePage.jsx diff --git a/frontend/src/pages/LectureRoomPage.jsx b/friends-mentor/src/pages/LectureRoomPage.jsx similarity index 100% rename from frontend/src/pages/LectureRoomPage.jsx rename to friends-mentor/src/pages/LectureRoomPage.jsx diff --git a/frontend/src/pages/LectureUploadPage.jsx b/friends-mentor/src/pages/LectureUploadPage.jsx similarity index 97% rename from frontend/src/pages/LectureUploadPage.jsx rename to friends-mentor/src/pages/LectureUploadPage.jsx index 1ad878d..5d406db 100644 --- a/frontend/src/pages/LectureUploadPage.jsx +++ b/friends-mentor/src/pages/LectureUploadPage.jsx @@ -6,6 +6,7 @@ import ModularRequest from "util/ModularRequest"; import {toast } from 'react-toastify'; import { useAtom } from "jotai"; import { LanguageChangeAtom } from "util/atom"; +import { FE_PATH } from "util/Enums"; function LectureUploadPage(){ @@ -57,6 +58,7 @@ function LectureUploadPage(){ m1.send().then((res)=>{ if(res.status=== 200) { notify("successfully added a lecture!"); + setTimeout(()=>{navigate(FE_PATH.course.list);},2000); } else { notify("there was an error in adding lecture!"); } diff --git a/frontend/src/pages/LectureViewPage.jsx b/friends-mentor/src/pages/LectureViewPage.jsx similarity index 100% rename from frontend/src/pages/LectureViewPage.jsx rename to friends-mentor/src/pages/LectureViewPage.jsx diff --git a/frontend/src/pages/LoginTestPage.jsx b/friends-mentor/src/pages/LoginTestPage.jsx similarity index 100% rename from frontend/src/pages/LoginTestPage.jsx rename to friends-mentor/src/pages/LoginTestPage.jsx diff --git a/frontend/src/pages/MainPage.jsx b/friends-mentor/src/pages/MainPage.jsx similarity index 100% rename from frontend/src/pages/MainPage.jsx rename to friends-mentor/src/pages/MainPage.jsx diff --git a/frontend/src/pages/Mypage.jsx b/friends-mentor/src/pages/Mypage.jsx similarity index 100% rename from frontend/src/pages/Mypage.jsx rename to friends-mentor/src/pages/Mypage.jsx diff --git a/frontend/src/pages/Pages.jsx b/friends-mentor/src/pages/Pages.jsx similarity index 100% rename from frontend/src/pages/Pages.jsx rename to friends-mentor/src/pages/Pages.jsx diff --git a/frontend/src/pages/SignInPage.jsx b/friends-mentor/src/pages/SignInPage.jsx similarity index 100% rename from frontend/src/pages/SignInPage.jsx rename to friends-mentor/src/pages/SignInPage.jsx diff --git a/frontend/src/pages/SignUpPage.jsx b/friends-mentor/src/pages/SignUpPage.jsx similarity index 94% rename from frontend/src/pages/SignUpPage.jsx rename to friends-mentor/src/pages/SignUpPage.jsx index 9cf4174..dcc8c67 100644 --- a/frontend/src/pages/SignUpPage.jsx +++ b/friends-mentor/src/pages/SignUpPage.jsx @@ -227,15 +227,15 @@ function SignUpPage() { paddingBottom: '7px', }}> <option selected default value="" disabled > {Enteryourgrade}</option> - <option value="1">đźď¸4th grade(ě´4)</option> - <option value="2">đźď¸5th grade(ě´5)</option> - <option value="3">đźď¸6th grade(ě´6)</option> - <option value="4">đ7th grade(ě¤1)</option> - <option value="5">đ8th grade(ě¤2)</option> - <option value="6">đ9th grade(ě¤3)</option> - <option value="7">đ10th grade(ęł 1)</option> - <option value="8">đ11th grade(ęł 2)</option> - <option value="9">đ12th grade(ęł 3)</option> + <option value="4">đźď¸4th grade(ě´4)</option> + <option value="5">đźď¸5th grade(ě´5)</option> + <option value="6">đźď¸6th grade(ě´6)</option> + <option value="7">đ7th grade(ě¤1)</option> + <option value="8">đ8th grade(ě¤2)</option> + <option value="9">đ9th grade(ě¤3)</option> + <option value="10">đ10th grade(ęł 1)</option> + <option value="11">đ11th grade(ęł 2)</option> + <option value="12">đ12th grade(ęł 3)</option> </select> <HorizonLine/> </div> diff --git a/frontend/src/pages/TestPage.jsx b/friends-mentor/src/pages/TestPage.jsx similarity index 100% rename from frontend/src/pages/TestPage.jsx rename to friends-mentor/src/pages/TestPage.jsx diff --git a/frontend/src/reportWebVitals.js b/friends-mentor/src/reportWebVitals.js similarity index 100% rename from frontend/src/reportWebVitals.js rename to friends-mentor/src/reportWebVitals.js diff --git a/frontend/src/setupTests.js b/friends-mentor/src/setupTests.js similarity index 100% rename from frontend/src/setupTests.js rename to friends-mentor/src/setupTests.js diff --git a/frontend/src/styles/ComponentStyles.jsx b/friends-mentor/src/styles/ComponentStyles.jsx similarity index 100% rename from frontend/src/styles/ComponentStyles.jsx rename to friends-mentor/src/styles/ComponentStyles.jsx diff --git a/frontend/src/styles/style.bootstrap.css b/friends-mentor/src/styles/style.bootstrap.css similarity index 100% rename from frontend/src/styles/style.bootstrap.css rename to friends-mentor/src/styles/style.bootstrap.css diff --git a/frontend/src/styles/styled-components/ButtonGroup.style.jsx b/friends-mentor/src/styles/styled-components/ButtonGroup.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/ButtonGroup.style.jsx rename to friends-mentor/src/styles/styled-components/ButtonGroup.style.jsx diff --git a/frontend/src/styles/styled-components/CertificateFrame.style.jsx b/friends-mentor/src/styles/styled-components/CertificateFrame.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/CertificateFrame.style.jsx rename to friends-mentor/src/styles/styled-components/CertificateFrame.style.jsx diff --git a/frontend/src/styles/styled-components/EmptyBox.style.jsx b/friends-mentor/src/styles/styled-components/EmptyBox.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/EmptyBox.style.jsx rename to friends-mentor/src/styles/styled-components/EmptyBox.style.jsx diff --git a/frontend/src/styles/styled-components/GradeSelect.style.jsx b/friends-mentor/src/styles/styled-components/GradeSelect.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/GradeSelect.style.jsx rename to friends-mentor/src/styles/styled-components/GradeSelect.style.jsx diff --git a/frontend/src/styles/styled-components/HorizontalInput.style.jsx b/friends-mentor/src/styles/styled-components/HorizontalInput.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/HorizontalInput.style.jsx rename to friends-mentor/src/styles/styled-components/HorizontalInput.style.jsx diff --git a/frontend/src/styles/styled-components/HorizontalLine.jsx b/friends-mentor/src/styles/styled-components/HorizontalLine.jsx similarity index 100% rename from frontend/src/styles/styled-components/HorizontalLine.jsx rename to friends-mentor/src/styles/styled-components/HorizontalLine.jsx diff --git a/frontend/src/styles/styled-components/LectureBoxComponents.style.jsx b/friends-mentor/src/styles/styled-components/LectureBoxComponents.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/LectureBoxComponents.style.jsx rename to friends-mentor/src/styles/styled-components/LectureBoxComponents.style.jsx diff --git a/frontend/src/styles/styled-components/LecturePlayer.style.jsx b/friends-mentor/src/styles/styled-components/LecturePlayer.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/LecturePlayer.style.jsx rename to friends-mentor/src/styles/styled-components/LecturePlayer.style.jsx diff --git a/frontend/src/styles/styled-components/Lecturegroup.style.jsx b/friends-mentor/src/styles/styled-components/Lecturegroup.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/Lecturegroup.style.jsx rename to friends-mentor/src/styles/styled-components/Lecturegroup.style.jsx diff --git a/frontend/src/styles/styled-components/LoginTest.style.jsx b/friends-mentor/src/styles/styled-components/LoginTest.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/LoginTest.style.jsx rename to friends-mentor/src/styles/styled-components/LoginTest.style.jsx diff --git a/frontend/src/styles/styled-components/MainBodyFrame.style.jsx b/friends-mentor/src/styles/styled-components/MainBodyFrame.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/MainBodyFrame.style.jsx rename to friends-mentor/src/styles/styled-components/MainBodyFrame.style.jsx diff --git a/frontend/src/styles/styled-components/Modal.jsx b/friends-mentor/src/styles/styled-components/Modal.jsx similarity index 100% rename from frontend/src/styles/styled-components/Modal.jsx rename to friends-mentor/src/styles/styled-components/Modal.jsx diff --git a/frontend/src/styles/styled-components/Modal2.jsx b/friends-mentor/src/styles/styled-components/Modal2.jsx similarity index 100% rename from frontend/src/styles/styled-components/Modal2.jsx rename to friends-mentor/src/styles/styled-components/Modal2.jsx diff --git a/frontend/src/styles/styled-components/ModalTitle.jsx b/friends-mentor/src/styles/styled-components/ModalTitle.jsx similarity index 100% rename from frontend/src/styles/styled-components/ModalTitle.jsx rename to friends-mentor/src/styles/styled-components/ModalTitle.jsx diff --git a/frontend/src/styles/styled-components/Modaltext.jsx b/friends-mentor/src/styles/styled-components/Modaltext.jsx similarity index 100% rename from frontend/src/styles/styled-components/Modaltext.jsx rename to friends-mentor/src/styles/styled-components/Modaltext.jsx diff --git a/frontend/src/styles/styled-components/MyPageComponents.style.jsx b/friends-mentor/src/styles/styled-components/MyPageComponents.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/MyPageComponents.style.jsx rename to friends-mentor/src/styles/styled-components/MyPageComponents.style.jsx diff --git a/frontend/src/styles/styled-components/SignInUpBar.style.jsx b/friends-mentor/src/styles/styled-components/SignInUpBar.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/SignInUpBar.style.jsx rename to friends-mentor/src/styles/styled-components/SignInUpBar.style.jsx diff --git a/frontend/src/styles/styled-components/ThemedBox.style.jsx b/friends-mentor/src/styles/styled-components/ThemedBox.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/ThemedBox.style.jsx rename to friends-mentor/src/styles/styled-components/ThemedBox.style.jsx diff --git a/frontend/src/styles/styled-components/ThemedBoxRound.style.jsx b/friends-mentor/src/styles/styled-components/ThemedBoxRound.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/ThemedBoxRound.style.jsx rename to friends-mentor/src/styles/styled-components/ThemedBoxRound.style.jsx diff --git a/frontend/src/styles/styled-components/ThemedBoxUnder.style.jsx b/friends-mentor/src/styles/styled-components/ThemedBoxUnder.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/ThemedBoxUnder.style.jsx rename to friends-mentor/src/styles/styled-components/ThemedBoxUnder.style.jsx diff --git a/frontend/src/styles/styled-components/ThemedButton.style.jsx b/friends-mentor/src/styles/styled-components/ThemedButton.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/ThemedButton.style.jsx rename to friends-mentor/src/styles/styled-components/ThemedButton.style.jsx diff --git a/frontend/src/styles/styled-components/ThemedTextBlock.style.jsx b/friends-mentor/src/styles/styled-components/ThemedTextBlock.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/ThemedTextBlock.style.jsx rename to friends-mentor/src/styles/styled-components/ThemedTextBlock.style.jsx diff --git a/frontend/src/styles/styled-components/ThemedTextarea.style.jsx b/friends-mentor/src/styles/styled-components/ThemedTextarea.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/ThemedTextarea.style.jsx rename to friends-mentor/src/styles/styled-components/ThemedTextarea.style.jsx diff --git a/frontend/src/styles/styled-components/ThemedTitle.style.jsx b/friends-mentor/src/styles/styled-components/ThemedTitle.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/ThemedTitle.style.jsx rename to friends-mentor/src/styles/styled-components/ThemedTitle.style.jsx diff --git a/frontend/src/styles/styled-components/Topbar.style.jsx b/friends-mentor/src/styles/styled-components/Topbar.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/Topbar.style.jsx rename to friends-mentor/src/styles/styled-components/Topbar.style.jsx diff --git a/frontend/src/styles/styled-components/UnderlinedTitle.style.jsx b/friends-mentor/src/styles/styled-components/UnderlinedTitle.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/UnderlinedTitle.style.jsx rename to friends-mentor/src/styles/styled-components/UnderlinedTitle.style.jsx diff --git a/frontend/src/styles/styled-components/VerticalInput.style.jsx b/friends-mentor/src/styles/styled-components/VerticalInput.style.jsx similarity index 100% rename from frontend/src/styles/styled-components/VerticalInput.style.jsx rename to friends-mentor/src/styles/styled-components/VerticalInput.style.jsx diff --git a/frontend/src/util/Enums.jsx b/friends-mentor/src/util/Enums.jsx similarity index 100% rename from frontend/src/util/Enums.jsx rename to friends-mentor/src/util/Enums.jsx diff --git a/frontend/src/util/ModularRequest.jsx b/friends-mentor/src/util/ModularRequest.jsx similarity index 100% rename from frontend/src/util/ModularRequest.jsx rename to friends-mentor/src/util/ModularRequest.jsx diff --git a/frontend/src/util/atom.jsx b/friends-mentor/src/util/atom.jsx similarity index 100% rename from frontend/src/util/atom.jsx rename to friends-mentor/src/util/atom.jsx diff --git a/frontend/src/util/modalPortal.jsx b/friends-mentor/src/util/modalPortal.jsx similarity index 100% rename from frontend/src/util/modalPortal.jsx rename to friends-mentor/src/util/modalPortal.jsx diff --git a/frontend/yarn.lock b/friends-mentor/yarn.lock similarity index 100% rename from frontend/yarn.lock rename to friends-mentor/yarn.lock diff --git a/frontend/public/favicon.ico b/frontend/public/favicon.ico deleted file mode 100644 index a11777c..0000000 Binary files a/frontend/public/favicon.ico and /dev/null differ diff --git a/frontend/src/logo.svg b/frontend/src/logo.svg deleted file mode 100644 index 9dfc1c0..0000000 --- a/frontend/src/logo.svg +++ /dev/null @@ -1 +0,0 @@ -<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 841.9 595.3"><g fill="#61DAFB"><path d="M666.3 296.5c0-32.5-40.7-63.3-103.1-82.4 14.4-63.6 8-114.2-20.2-130.4-6.5-3.8-14.1-5.6-22.4-5.6v22.3c4.6 0 8.3.9 11.4 2.6 13.6 7.8 19.5 37.5 14.9 75.7-1.1 9.4-2.9 19.3-5.1 29.4-19.6-4.8-41-8.5-63.5-10.9-13.5-18.5-27.5-35.3-41.6-50 32.6-30.3 63.2-46.9 84-46.9V78c-27.5 0-63.5 19.6-99.9 53.6-36.4-33.8-72.4-53.2-99.9-53.2v22.3c20.7 0 51.4 16.5 84 46.6-14 14.7-28 31.4-41.3 49.9-22.6 2.4-44 6.1-63.6 11-2.3-10-4-19.7-5.2-29-4.7-38.2 1.1-67.9 14.6-75.8 3-1.8 6.9-2.6 11.5-2.6V78.5c-8.4 0-16 1.8-22.6 5.6-28.1 16.2-34.4 66.7-19.9 130.1-62.2 19.2-102.7 49.9-102.7 82.3 0 32.5 40.7 63.3 103.1 82.4-14.4 63.6-8 114.2 20.2 130.4 6.5 3.8 14.1 5.6 22.5 5.6 27.5 0 63.5-19.6 99.9-53.6 36.4 33.8 72.4 53.2 99.9 53.2 8.4 0 16-1.8 22.6-5.6 28.1-16.2 34.4-66.7 19.9-130.1 62-19.1 102.5-49.9 102.5-82.3zm-130.2-66.7c-3.7 12.9-8.3 26.2-13.5 39.5-4.1-8-8.4-16-13.1-24-4.6-8-9.5-15.8-14.4-23.4 14.2 2.1 27.9 4.7 41 7.9zm-45.8 106.5c-7.8 13.5-15.8 26.3-24.1 38.2-14.9 1.3-30 2-45.2 2-15.1 0-30.2-.7-45-1.9-8.3-11.9-16.4-24.6-24.2-38-7.6-13.1-14.5-26.4-20.8-39.8 6.2-13.4 13.2-26.8 20.7-39.9 7.8-13.5 15.8-26.3 24.1-38.2 14.9-1.3 30-2 45.2-2 15.1 0 30.2.7 45 1.9 8.3 11.9 16.4 24.6 24.2 38 7.6 13.1 14.5 26.4 20.8 39.8-6.3 13.4-13.2 26.8-20.7 39.9zm32.3-13c5.4 13.4 10 26.8 13.8 39.8-13.1 3.2-26.9 5.9-41.2 8 4.9-7.7 9.8-15.6 14.4-23.7 4.6-8 8.9-16.1 13-24.1zM421.2 430c-9.3-9.6-18.6-20.3-27.8-32 9 .4 18.2.7 27.5.7 9.4 0 18.7-.2 27.8-.7-9 11.7-18.3 22.4-27.5 32zm-74.4-58.9c-14.2-2.1-27.9-4.7-41-7.9 3.7-12.9 8.3-26.2 13.5-39.5 4.1 8 8.4 16 13.1 24 4.7 8 9.5 15.8 14.4 23.4zM420.7 163c9.3 9.6 18.6 20.3 27.8 32-9-.4-18.2-.7-27.5-.7-9.4 0-18.7.2-27.8.7 9-11.7 18.3-22.4 27.5-32zm-74 58.9c-4.9 7.7-9.8 15.6-14.4 23.7-4.6 8-8.9 16-13 24-5.4-13.4-10-26.8-13.8-39.8 13.1-3.1 26.9-5.8 41.2-7.9zm-90.5 125.2c-35.4-15.1-58.3-34.9-58.3-50.6 0-15.7 22.9-35.6 58.3-50.6 8.6-3.7 18-7 27.7-10.1 5.7 19.6 13.2 40 22.5 60.9-9.2 20.8-16.6 41.1-22.2 60.6-9.9-3.1-19.3-6.5-28-10.2zM310 490c-13.6-7.8-19.5-37.5-14.9-75.7 1.1-9.4 2.9-19.3 5.1-29.4 19.6 4.8 41 8.5 63.5 10.9 13.5 18.5 27.5 35.3 41.6 50-32.6 30.3-63.2 46.9-84 46.9-4.5-.1-8.3-1-11.3-2.7zm237.2-76.2c4.7 38.2-1.1 67.9-14.6 75.8-3 1.8-6.9 2.6-11.5 2.6-20.7 0-51.4-16.5-84-46.6 14-14.7 28-31.4 41.3-49.9 22.6-2.4 44-6.1 63.6-11 2.3 10.1 4.1 19.8 5.2 29.1zm38.5-66.7c-8.6 3.7-18 7-27.7 10.1-5.7-19.6-13.2-40-22.5-60.9 9.2-20.8 16.6-41.1 22.2-60.6 9.9 3.1 19.3 6.5 28.1 10.2 35.4 15.1 58.3 34.9 58.3 50.6-.1 15.7-23 35.6-58.4 50.6zM320.8 78.4z"/><circle cx="420.9" cy="296.5" r="45.7"/><path d="M520.5 78.1z"/></g></svg> \ No newline at end of file