-
Notifications
You must be signed in to change notification settings - Fork 31
[진성진] Sprint 3 #32
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
dongqui
merged 6 commits into
codeit-bootcamp-frontend:Basic-진성진
from
cozy-ito:Basic-진성진-sprint3
Jan 21, 2025
The head ref may contain hidden characters: "Basic-\uC9C4\uC131\uC9C4-sprint3"
Merged
[진성진] Sprint 3 #32
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
fb14146
refactor(진성진): 스프린트 2 피드백 반영
cozy-ito 8fc2b64
refactor(진성진): 메인 페이지 태블릿 반응형 UI 구현
cozy-ito 4d26161
refactor(진성진): 메인 페이지 모바일 반응형 UI 구현
cozy-ito ef829e1
rafactor(진성진): 로그인, 회원가입 모바일 반응형 UI 구현
cozy-ito 533a959
--amend
cozy-ito 7dc166b
refactor(진성진): 메인 페이지 오픈그래프 적용
cozy-ito 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
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 |
|---|---|---|
|
|
@@ -3,6 +3,17 @@ | |
| <head> | ||
| <meta charset="UTF-8" /> | ||
| <meta name="viewport" content="width=device-width, initial-scale=1.0" /> | ||
| <meta property="og:title" content="판다마켓" /> | ||
| <meta | ||
| property="og:description" | ||
| content="일상의 모든 물건을 거래해보세요." | ||
| /> | ||
| <meta | ||
| property="og:url" | ||
| content="https://cozy-ito-panda-market.netlify.app/" | ||
| /> | ||
| <meta property="og:image" content="src/assets/img/open_graph_img.png" /> | ||
|
|
||
| <link rel="stylesheet" href="src/styles/common.css" /> | ||
| <link rel="stylesheet" href="src/styles/main.css" /> | ||
| <title>판다마켓</title> | ||
|
|
@@ -11,7 +22,16 @@ | |
| <header class="main-header"> | ||
| <nav class="main-nav"> | ||
| <a href="/"> | ||
| <img src="src/assets/img/panda-logo.png" alt="판다마켓 로고" /> | ||
| <picture> | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. picture를 활용하셨군요! 👍 |
||
| <source | ||
| srcset="src/assets/img/logo_with_panda_icon.svg" | ||
| media="(min-width: 768px)" | ||
| /> | ||
| <img | ||
| src="src/assets/img/logo_without_panda_icon.svg" | ||
| alt="판다마켓 로고" | ||
| /> | ||
| </picture> | ||
| </a> | ||
| <a class="login" href="login.html">로그인</a> | ||
| </nav> | ||
|
|
@@ -20,11 +40,13 @@ | |
| <main class="home-main"> | ||
| <section class="hero-section"> | ||
| <div class="center-content"> | ||
| <p class="title"> | ||
| 일상의 모든 물건을 <br /> | ||
| 거래해 보세요 | ||
| </p class="title"> | ||
| <a href="items.html">구경하러 가기</a> | ||
| <div class="content"> | ||
| <p> | ||
| 일상의 모든 물건을 <br /> | ||
| 거래해 보세요 | ||
| </p> | ||
| <a href="items.html">구경하러 가기</a> | ||
| </div> | ||
| <img | ||
| src="src/assets/img/img_home_top.png" | ||
| alt="홈페이지 상단 판다 이미지" | ||
|
|
@@ -36,10 +58,10 @@ | |
| <img src="src/assets/img/img_home_01.png" alt="메인이미지1" /> | ||
| <div class="content"> | ||
| <span class="subtitle">Hot Item</span> | ||
| <h2 class="title"> | ||
| <p class="title"> | ||
| 인기 상품을 <br /> | ||
| 확인해 보세요 | ||
| </h2> | ||
| </p> | ||
| <p class="description"> | ||
| 가장 HOT한 중고거래 물품을 <br /> | ||
| 판다 마켓에서 확인해 보세요 | ||
|
|
@@ -52,10 +74,10 @@ <h2 class="title"> | |
| <img src="src/assets/img/img_home_02.png" alt="메인이미지2" /> | ||
| <div class="content"> | ||
| <span class="subtitle">Search</span> | ||
| <h2 class="title"> | ||
| <p class="title"> | ||
| 구매를 원하는 <br /> | ||
| 상품을 검색하세요 | ||
| </h2> | ||
| </p> | ||
| <p class="description"> | ||
| 구매하고 싶은 물품은 검색해서 <br /> | ||
| 쉽게 찾아보세요! | ||
|
|
@@ -68,10 +90,10 @@ <h2 class="title"> | |
| <img src="src/assets/img/img_home_03.png" alt="메인이미지3" /> | ||
| <div class="content reset-right-padding"> | ||
| <span class="subtitle">Register</span> | ||
| <h2 class="title"> | ||
| <p class="title"> | ||
| 판매를 원하는 <br /> | ||
| 상품을 등록하세요 | ||
| </h2> | ||
| </p> | ||
| <p class="description"> | ||
| 어떤 물건이든 판매하고 싶은 상품을 <br /> | ||
| 쉽게 등록하세요 | ||
|
|
@@ -81,10 +103,10 @@ <h2 class="title"> | |
| </section> | ||
| <section class="bottom-section"> | ||
| <div class="center-content"> | ||
| <h2 class="title"> | ||
| <p class="title"> | ||
| 믿을 수 있는 <br /> | ||
| 판다마켓 중고 거래 | ||
| </h2> | ||
| </p> | ||
| <img | ||
| src="src/assets/img/img_home_bottom.png" | ||
| alt="홈페이지 하단 판다이미지" | ||
|
|
||
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 was deleted.
Oops, something went wrong.
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.
Binary file not shown.
Oops, something went wrong.
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.
og도 넣어주셧네요~! 👍