-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #16 from Ravende/feat/card
[FE] feat: 상세페이지 추가
- Loading branch information
Showing
23 changed files
with
522 additions
and
36 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains 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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 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 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 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 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 |
---|---|---|
@@ -1,15 +1,53 @@ | ||
import '../App.css'; | ||
import './cardInfo.css'; | ||
|
||
export function CardInfo() { | ||
return ( | ||
<div className="cafeinfo-box"> | ||
<div className="cafe-name">카페명</div> | ||
<div className="operating-hours">영업시간 : 09:00-20:00</div> | ||
<div className="operating-state">영업상태 : 영업중</div> | ||
<div className="menu">대표메뉴 : 생과일주스 </div> | ||
<div className="cafe-image"> | ||
<img className="cafeimg" alt="cafeimg1" src="cafeimage.jpg" /> | ||
<img id= "back_icon" alt = "back" src = "./assets/back_icon.png" /> | ||
<div id="cafe-name">카페명</div> | ||
<div className="cafe-image-info"> | ||
<img id="cafeinfoimg" alt="cafeimg2" src="./assets/cafeinfoimage.jpg" /> | ||
</div> | ||
<div className="hash-warp"> | ||
<div className="hash">#포토존</div> | ||
<div className="hash">#포토존</div> | ||
<div className="hash">#포토존</div> | ||
<div className="hash">#포토존</div> | ||
</div> | ||
<div id="operating-hours">평일 12:0~22:00 / 주말 11:00~22:00</div> | ||
<div className="review-box"> | ||
{/* <img id= "cof_icon" alt = "cof" src = "./assets/cofimg.png" /> | ||
*/} | ||
<div id = "review-name" >평점</div> | ||
|
||
<div className="review-wrap"> | ||
<div className="review"> | ||
<h3>리뷰</h3> | ||
<h4>멀티탭이 많아요</h4> | ||
</div> | ||
|
||
{/* <div className="review"> | ||
<h3>리뷰</h3> | ||
<h4>멀티탭이 많아요</h4> | ||
</div> */} | ||
|
||
</div> | ||
|
||
|
||
|
||
</div> | ||
|
||
<div id="menu">대표메뉴 </div> | ||
|
||
<div className="menulist-wrap"> | ||
<img id="menulist" alt="menu" src="./assets/americano.png" /> | ||
<img id="menulist" alt="menu" src="./assets/americano.png" /> | ||
<img id="menulist" alt="menu" src="./assets/americano.png" /> | ||
<img id="menulist" alt="menu" src="./assets/americano.png" /> | ||
|
||
</div> | ||
|
||
</div> | ||
); | ||
} |
Oops, something went wrong.