diff --git a/personalJob/gptour/README.md b/personalJob/gptour/README.md new file mode 100644 index 0000000..ab67968 --- /dev/null +++ b/personalJob/gptour/README.md @@ -0,0 +1,30 @@ +50 + + + +make board such as to upper url on wordpress + +scenario + +click write btn >> auth >> enter the writer page + +

+ + +this site made wordpress + +must be adapt woocommerce because this site purpose is get lesson +and signup, member management, checkout + +

+and then client want below this + +deposit confirm call btn by user self + +reference site below this + + + + + +Sowon0001! diff --git a/quantecContract/README.md b/quantecContract/README.md index 5f01345..a2adfcc 100644 --- a/quantecContract/README.md +++ b/quantecContract/README.md @@ -349,3 +349,60 @@ export interface IStrategyTerms { gapsesjs로 만들어진 html을 사용하여 변경할것이다. + +기존의 git 소스는 React Typescript로 되어 있음. +이걸 NextJS Typescript로 전환시킬 것임. + +이에 따라서 세팅할 부분이 추가 됨 + +1. Next.js 설치 +`npm install next react react-dom` + +2. 프로젝트 구조 변경 + +Next.js는 기본적으로 pages 폴더를 사용하여 페이지 라우팅을 처리. 현재의 src 폴더 구조를 다음과 같이 변경하는 것이 좋음: + +src/pages: 각 페이지에 해당하는 컴포넌트를 이 폴더에 넣습니다. + +src/components: 공통으로 사용할 컴포넌트를 이 폴더에 넣습니다. + +src/public: 정적 파일(이미지, 폰트 등)을 이 폴더에 넣습니다. + +src/styles: 글로벌 스타일 파일을 이 폴더에 넣습니다. + +example + +```console +/src + /components + /pages + /api + index.tsx + /public + /styles + ... +``` + +3. next.config.js 추가 + +```javascript +// next.config.js +module.exports = { + reactStrictMode: true, +}; +``` + +4. 스크립트 수정 + +```json +// package.json +"scripts": { + "dev": "next dev", + "build": "next build", + "start": "next start", + "lint": "next lint" +} +``` + + +6. 기존 react-scripts 제거 `npm uninstall react-scripts` \ No newline at end of file diff --git a/quantecReport/README.md b/quantecReport/README.md index 7f497f8..8961afc 100644 --- a/quantecReport/README.md +++ b/quantecReport/README.md @@ -8,6 +8,7 @@
`market/strategy/detail`의 response 구조 + ```json { "strategyPlan": { @@ -177,13 +178,13 @@ } ``` -


`market/strategy/promotion` 의 response 구조 -```json + +```json { "topInfo": { "strategyId": "KP0011", @@ -417,12 +418,21 @@

-**24-08-12일까지 수정한 내용** - -1. coachchart.tsx -2. coachResultComponent.tsx -3. reportlinechart.tsx -4. chart +## 피드백 상황 2024-08-21 +- 홍광진이사 + +1. 최근 1개월과 6개월은 하단의 기간이 이상하고, 1개월, 6개월, 1년 수익률 그래프가 모두 동일합니다. + +![alt text](image.png) + +2. 미흡 및 주요 지표 설명은 아래 화면처럼 주의/미흡인 종목들 아래에 확장된 형태로 붙어서 나오는거고 종목도 우수~주의 순서로 정렬되어야 하지 않나요? + +![alt text](image-1.png) + +3. 차트 위의 텍스트 위치 조정도 필요합니다. + +![alt text](image-2.png) +![alt text](image-3.png) diff --git a/quantecReport/image-1.png b/quantecReport/image-1.png new file mode 100644 index 0000000..27bbc82 Binary files /dev/null and b/quantecReport/image-1.png differ diff --git a/quantecReport/image-2.png b/quantecReport/image-2.png new file mode 100644 index 0000000..60768c6 Binary files /dev/null and b/quantecReport/image-2.png differ diff --git a/quantecReport/image-3.png b/quantecReport/image-3.png new file mode 100644 index 0000000..fe4a582 Binary files /dev/null and b/quantecReport/image-3.png differ diff --git a/quantecReport/image.png b/quantecReport/image.png new file mode 100644 index 0000000..ec73a6a Binary files /dev/null and b/quantecReport/image.png differ