Skip to content

Commit

Permalink
Merge pull request #13 from SW-Palindrome/feature/detail-studies-1
Browse files Browse the repository at this point in the history
스터디 상세 페이지의 Activities 구현
  • Loading branch information
milkbottle0305 authored Mar 11, 2024
2 parents a80a636 + 638ba2a commit b984ef8
Show file tree
Hide file tree
Showing 13 changed files with 557 additions and 2 deletions.
37 changes: 37 additions & 0 deletions public/data/data.json
Original file line number Diff line number Diff line change
Expand Up @@ -278,6 +278,43 @@
"fine": 2000,
"setting": "Private"
},
"studyActivities": [
{
"student": "Hooing",
"title": null,
"date": "24.03.11 ~ 24.03.17",
"status": "Incompleted",
"url": null
},
{
"student": "Hooing",
"title": "React - 1주차 과제",
"date": "23.12.26 ~ 23.12.31",
"status": "Completed",
"url": "https://velog.io/@milkbottle0305"
},
{
"student": "Hooing",
"title": "딥러닝 - 1주차 과제",
"date": "23.12.26 ~ 23.12.31",
"status": "Completed",
"url": "https://velog.io/@milkbottle0305"
},
{
"student": "Milkyway",
"title": null,
"date": "23.12.26 ~ 23.12.31",
"status": "Incompleted",
"url": null
},
{
"student": "papa",
"title": null,
"date": "23.12.26 ~ 23.12.31",
"status": "Incompleted",
"url": null
}
],
"fineStatus": {
"weekDuration": [
"12.25 ~ 12.31",
Expand Down
Binary file modified public/favicon.ico
Binary file not shown.
2 changes: 1 addition & 1 deletion public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -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>Studit</title>
</head>
<body>
<noscript>You need to enable JavaScript to run this app.</noscript>
Expand Down
Binary file removed public/logo192.png
Binary file not shown.
Binary file removed public/logo512.png
Binary file not shown.
Binary file added src/assets/intergrate.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/study-invite.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/study-mng.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added src/assets/study-setting.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions src/pages/Mystudies/DetailMystudy.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import styled from "styled-components";
import Nav from "../../components/Nav";
import DetailStudy from "./components/DetailStudy";

const StyledDetailMystudy = styled.div`
display: flex;
Expand All @@ -12,6 +13,7 @@ function DetailMystudy() {
return (
<StyledDetailMystudy>
<Nav selectedMenu="mystudies" />
<DetailStudy />
</StyledDetailMystudy>
);
}
Expand Down
Loading

0 comments on commit b984ef8

Please sign in to comment.