Skip to content
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

React 정진호 sprint5 #53

Open
wants to merge 16 commits into
base: react-정진호
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 4 additions & 18 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,28 +1,20 @@
# 🐼 판다마켓 프로젝트

> _이 저장소는 판다마켓 프로젝트의 프론트엔드 코드를 관리하는 곳입니다. 프로젝트를 클론하여 개발 환경을 설정하고, 각 브랜치에서 해당 스프린트 미션을 수행해 주세요!_ 🛠️
> _이 저장소는 판다마켓 프로젝트의 프론트엔드 코드를 관리하는 곳입니다.

## 소개
# 작성자 : Jinho Jeong

안녕하세요! 판다마켓 프로젝트에 오신 것을 환영합니다! 🥳
판다마켓은 따뜻한 중고거래를 위한 커뮤니티 플랫폼이에요. 여러분은 이곳에서 상품을 등록하고, 다른 사용자들과 소통하며, 자유롭게 이야기를 나눌 수 있어요. 매주 스프린트 미션을 통해 기능을 하나씩 만들어 가며 성장해 나가는 여정을 함께해요. 🚀
## 소개

![PandaMarket](https://github.com/user-attachments/assets/3784b99f-73c9-4349-a9a9-92b2a7563574)
_위 이미지는 판다마켓의 대표 이미지입니다._ 📸

## 스프린트 미션이란? 🤔

스프린트 미션은 **하나의 개인 프로젝트를 길게 진행하면서, 그 과정에서 주기적으로 피드백을 받을 수 있는 시스템**이에요. 각 스프린트마다 배운 이론을 적용해 보고, **멘토님께 코드 리뷰를 받아가며 실력을 쑥쑥 키워갈 수 있는 중요한 개인 과제**랍니다. 💪

## 주요 기능 ✨

1. **상품 등록**: 내가 가진 물건을 올리고, 사진과 설명을 추가해 직접 판매할 수 있어요!
2. **문의 댓글**: 상품에 대한 궁금한 점이나 의견을 자유롭게 남길 수 있답니다. 📝
3. **자유게시판**: 다양한 주제로 친구들과 이야기를 나누고, 정보를 공유할 수 있는 공간이에요! 🗣️

## 프로젝트 브랜치 구조 🏗️

프로젝트는 단계별로 나뉘어 있고, 각 스프린트 미션에 맞는 브랜치가 있어요. 각 브랜치를 통해 체계적으로 개발하며 학습할 수 있어요. 🎯

### 브랜치 설명

Expand All @@ -41,10 +33,4 @@ _위 이미지는 판다마켓의 대표 이미지입니다._ 📸

- Next.js를 사용해 서버 사이드 렌더링(SSR)과 정적 사이트 생성(SSG) 등 고급 기능을 구현합니다.
- **스프린트 미션 8부터** 시작하는 프론트엔드 내용을 포함하고 있어요.
- 만약 스프린트 미션 9부터 프론트엔드 코드를 React가 아닌 Next로 구현하고 싶다면 next 브랜치를 사용해요.

> _스프린트 미션 내 백엔드 요구사항은 [백엔드 레포지토리](https://github.com/codeit-sprint-fullstack/2-Sprint-mission-Be)의 브랜치에서 관리해주세요_

---

본 프로젝트는 [코드잇](https://www.codeit.kr)의 소유이며, 교육 목적으로만 사용됩니다. © 2024 Codeit. All rights reserved.
- 만약 스프린트 미션 9부터 프론트엔드 코드를 React가 아닌 Next로 구현하고 싶다면 next 브랜치를 사용해요.
11 changes: 11 additions & 0 deletions default_data.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
const USER_DATA = [
{ email: '[email protected]', password: "testtest123"},
{ email: '[email protected]', password: "codeit101!" },
{ email: '[email protected]', password: "codeit202!" },
{ email: '[email protected]', password: "codeit303!" },
{ email: '[email protected]', password: "codeit404!" },
{ email: '[email protected]', password: "codeit505!" },
{ email: '[email protected]', password: "codeit606!" },
];

// localStorage.setItem("USER_DATA", JSON.stringify(USER_DATA));
131 changes: 131 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,131 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="reset.css">
<link rel="stylesheet" href="style.css">
<title>Panda Market</title>

<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-C252NEYGHB"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', 'G-C252NEYGHB');
</script>
</head>
<body>
<nav>
<div class="container">
<div class="nav-container">
<img id="logo" src="./resources/logo_with_text.png" alt="logo with text">
<a href="login.html" class="button-square">로그인</a>
</div>
</div>
</nav>
<section class="main-top">
<div class="container">
<div class="main-container">
<div class="main-text-container">
<h1>
일상의 모든 물건을 <br>
거래해 보세요
</h1>
<a href="/items" class="button-round">구경하러 가기</a>
</div>
<img class="card-img" src="./resources/Img_home_top.png" alt="shopping panda">
</div>
</div>
</section>
<section class="hot-item card">
<div class="container">
<div class="card-container">
<img class="card-img" src="./resources/Img_home_01.png" alt="hot item">
<div class="card-text-container">
<div class="label">Hot item</div>
<h2>
인기 상품을 <br>
확인해 보세요
</h2>
<p>
가장 HOT한 중고거래 물품을 <br>
판다 마켓에서 확인해 보세요
</p>
</div>
</div>
</div>
</section>
<section class="search card">
<div class="container">
<div class="card-container">
<div class="card-text-container left">
<div class="label">Search</div>
<h2>
구매를 원하는 <br>
상품을 검색하세요
</h2>
<p>
구매하고 싶은 물품은 검색해서 <br>
쉽게 찾아보세요
</p>
</div>
<img class="card-img" src="./resources/Img_home_02.png" alt="hot item">
</div>
</div>
</section>
<section class="register card">
<div class="container">
<div class="card-container">
<img class="card-img" src="./resources/Img_home_03.png" alt="hot item">
<div class="card-text-container">
<div class="label">Register</div>
<h2>
판매를 원하는 <br>
상품을 등록하세요
</h2>
<p>
어떤 물건이든 판매하고 싶은 <br>
상품을 쉽게 등록하세요
</p>
</div>
</div>
</div>
</section>
<section class="main-bottom">
<div class="container">
<div class="main-container">
<div class="card-text-container">
<h1>믿을 수 있는<br>
판다마켓 중고 거래
</h1>
</div>
<img class="card-img" src="./resources/Img_home_bottom.png" alt="shopping panda">
</div>
</div>
</section>
<footer>
<p>©codeit - 2024</p>
<div class="footer-center">
<a href="/privacy">Parivacy Policy</a>
<a href="/fag">FAQ</a>
</div>
<div class="footer-right">
<a href="https://www.facebook.com/" target="_blank">
<img src="./resources/ic_facebook.png" alt="ic facebook">
</a>
<a href="https://www.x.com/" target="_blank">
<img src="./resources/ic_twitter.png" alt="ic twitter">
</a>
<a href="https://www.youtube.com/" target="_blank">
<img src="./resources/ic_youtube.png" alt="ic youtube">
</a>
<a href="https://www.instagram.com/" target="_blank">
<img src="./resources/ic_insta.png" alt="ic insta">
</a>
</div>
</footer>
</body>
</html>
Loading
Loading