-
Notifications
You must be signed in to change notification settings - Fork 2
dev 최신화 #92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
dev 최신화 #92
Changes from 9 commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
67f2be6
feat: (SRLT-121) 지정된 전문가 상세에서 ai리포트가 생성된 항목만 조회하기 연결
Chasyuss 6c6aeb5
chore: (SRLT-121) 안쓰는 type 삭제
Chasyuss 2d67679
feat: (SRLT-121) 전문가 디테일 사업계획서 없을때, 비로그인시 처리
Chasyuss fa6d10b
refactor: (SRLT-121) 전문가 연결 관련 버튼 아이콘, 텍스트 바뀌는 기준 나누기
Chasyuss d7bf6d7
fix: (SRLT-121) 비로그인 새로고침 에러 수정
Chasyuss 5fd511b
Merge pull request #90 from StartUpLight/SRLT-121-전문가-상세페이지-디테일
Chasyuss edb34dc
feat: (SRLT-123) 랜딩 프로모션 페이지 추가
Chasyuss ad316ea
feat: (SRLT-123) 랜딩페이지 paysection추가
Chasyuss 99a6ba9
Merge pull request #91 from StartUpLight/SRLT-123-랜딩페이지-추가-ui
Chasyuss dc6ef25
feat: (SRLT-123) 랜딩페이지 추가 ui 버튼 라우터 연결
Chasyuss 61610dd
feat: (SRLT-123) 프로모션 기간 금액 0원 추가
Chasyuss 0d3381d
Merge pull request #93 from StartUpLight/SRLT-123-랜딩페이지-추가-ui
Chasyuss File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,67 @@ | ||
| import Check from '@/assets/icons/big_check.svg'; | ||
| import RightIcon from '@/assets/icons/white_right.svg'; | ||
|
|
||
| const LandingPaySection = () => { | ||
| return ( | ||
| <div className="flex h-[978px] w-full flex-col items-center justify-center gap-[67px] px-[375px] py-[120px]"> | ||
| <div className="text-[52px] leading-[150%] font-semibold text-gray-900"> | ||
| <span className="relative inline-block"> | ||
| <span className="absolute inset-0 flex items-center"> | ||
| <span className="bg-primary-500 h-[5px] w-full"></span> | ||
| </span> | ||
|
|
||
| <span className="relative"> | ||
| 300,000원{' '} | ||
| <span className="text-[32px] font-medium text-gray-700"> | ||
| / 시간당 비대면 멘토링 | ||
| </span> | ||
| </span> | ||
| </span> | ||
| </div> | ||
|
|
||
| <div className="flex w-full flex-col items-center"> | ||
| <div className="bg-primary-500 inline-flex w-full items-center justify-center rounded-t-2xl py-3"> | ||
| <p className="ds-title font-medium text-white">Lite 이용권의 기능</p> | ||
| </div> | ||
|
|
||
| <div className="flex w-full flex-col rounded-b-2xl bg-gray-900 px-[60px] py-[50px]"> | ||
| <p className="text-[48px] font-semibold text-white"> | ||
| 49,000원{' '} | ||
| <span className="text-[24px] font-medium text-gray-300"> | ||
| / 시간당 비대면 멘토링 | ||
| </span> | ||
| </p> | ||
|
|
||
| <div className="mt-5 flex flex-row items-center gap-[6px]"> | ||
| <Check /> | ||
| <p className="text-[22px] text-white">전문가 비대면 멘토링 1회</p> | ||
| </div> | ||
|
|
||
| <div className="ds-subtitle mt-3 flex w-full flex-col gap-1 px-6 font-medium text-gray-300"> | ||
| <li>사업계획서 PDF/텍스트 기반 심층 검토</li> | ||
| <li>강·약점 구체 코멘트</li> | ||
| <li>AI 리포트 무제한 포함</li> | ||
| </div> | ||
| </div> | ||
|
|
||
| <button className="bg-primary-500 hover:bg-primary-700 mt-12 flex h-[64px] w-[516px] cursor-pointer items-center justify-center rounded-lg px-8"> | ||
| <p className="ds-title font-semibold text-white">구매하기</p> | ||
| <RightIcon /> | ||
| </button> | ||
coderabbitai[bot] marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
|
|
||
| <div className="mt-12 flex flex-col"> | ||
| <p className="ds-text font-normal text-gray-600"> | ||
| *전문가 대면 멘토링 평균 약 30만 원 수준에서 구조 개선을 통해 최대 | ||
| 약 4.9만 원대까지 절감했습니다. | ||
| </p> | ||
| <p className="ds-text text-center font-normal text-gray-600"> | ||
| *전문가 대면 멘토링 평균 비용은 1시간 기준 일반적인 시장 시세를 | ||
| 참고하였습니다. | ||
| </p> | ||
| </div> | ||
| </div> | ||
| </div> | ||
| ); | ||
| }; | ||
|
|
||
| export default LandingPaySection; | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
🏁 Script executed:
# Check if the file exists and read the content wc -l src/app/_components/landing/LandingChecklist.tsxRepository: StartUpLight/STARLIGHT_FE
Length of output: 120
🏁 Script executed:
Repository: StartUpLight/STARLIGHT_FE
Length of output: 1822
🏁 Script executed:
Repository: StartUpLight/STARLIGHT_FE
Length of output: 51
🏁 Script executed:
Repository: StartUpLight/STARLIGHT_FE
Length of output: 96
🏁 Script executed:
Repository: StartUpLight/STARLIGHT_FE
Length of output: 96
🏁 Script executed:
Repository: StartUpLight/STARLIGHT_FE
Length of output: 467
🏁 Script executed:
Repository: StartUpLight/STARLIGHT_FE
Length of output: 582
정적 타이머를 동적 카운트다운으로 구현하거나 제거하세요.
현재 타이머 값(
['10일', '4시간', '19분', '20초'])이 하드코딩되어 있어 실제로 카운트다운되지 않습니다. 사용자는 타이머가 실시간으로 업데이트될 것으로 기대하므로, 이는 혼란스러운 UX를 제공합니다.프로모션 종료 시점(
~1/10)까지 실제 카운트다운 로직을 구현하거나, 타이머 UI를 제거하고 정적 텍스트로 표시하는 것을 권장합니다. 카운트다운을 구현하는 경우'use client'지시문을 추가하여 클라이언트 컴포넌트로 전환해야 합니다.🤖 Prompt for AI Agents