Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
fc5dffe
chore: PR 템플릿 추가
withyj-codeit Sep 3, 2023
93a0e93
chore: 머지 후 브랜치 삭제 github action 추가
withyj-codeit Sep 3, 2023
b2e37bd
reset
hanseulhee Oct 10, 2023
6f8bbb0
Merge branch 'codeit-bootcamp-frontend:main' into main
hanseulhee Oct 10, 2023
e11e25f
fix: 머지 후 브랜치 삭제 github action 수정
hanseulhee Oct 10, 2023
212e864
env: workflows 폴더로 이동
hanseulhee Oct 10, 2023
4dc5dd0
Merge pull request #237 from hanseulhee/fix-github-actions
withyj-codeit Nov 6, 2023
6fcbe47
Add landing page with HTML, CSS and images
sseung30 May 22, 2025
0082263
Merge pull request #21 from sseung30/Basic-이승현-sprint1
baeggmin May 23, 2025
e20a7bc
refactor(백경민): CSS 파일 분리, 로그인& 회원가입 페이지 추가
sseung30 Jun 2, 2025
9c6f88d
Merge pull request #48 from sseung30/Basic-이승현-sprint2
baeggmin Jun 2, 2025
d114137
refactor(백경민): 파일명 형식 통일, CSS 파일명 수정, CSS 폴더 재구조화
sseung30 Jun 4, 2025
d72939c
refactor(백경민): Make landing page responsive
sseung30 Jun 5, 2025
7b6b6bf
Refactor: Edit hrefs in index
sseung30 Jun 5, 2025
fbaa56f
refactor(백경민): Add responsive design for auth.css, Add reset.css to b…
sseung30 Jun 5, 2025
2de90d4
refactor(백경민): Add placeholder and its style
sseung30 Jun 5, 2025
2c492a9
Refactor(백경민): Add status to login button
sseung30 Jun 5, 2025
58230ae
refactor(백경민): Change logo files from .png to .svg
sseung30 Jun 5, 2025
e6cc255
refactor(이승현): Change GNB logo for reponsive design
sseung30 Jun 5, 2025
aaf8239
refactor(백경민): Edit primary button and layout of features
sseung30 Jun 5, 2025
5bd5982
refactor(백경민): Add open graph and twitter card meta tags
sseung30 Jun 5, 2025
219e719
refactor: Add html folder and move files
Jul 3, 2025
cb3eea0
feature: Add items page
Jul 7, 2025
9fb09ba
Add sort and default user img
sseung30 Aug 9, 2025
ebc081c
Merge branch 'codeit-bootcamp-frontend:React-이승현' into React-이승현
sseung30 Aug 9, 2025
4183b1c
Add layout
sseung30 Aug 10, 2025
88cd3de
fix: fix error in layout.jsx
sseung30 Aug 10, 2025
e0b9c87
Feat: Add AddItemPage
sseung30 Aug 11, 2025
2cd4648
Design: Edit Topbar design for mobile
sseung30 Aug 12, 2025
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
27 changes: 27 additions & 0 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
## 요구사항

### 기본

- [x]
- []
- []

### 심화

- [x]
- []

## 주요 변경사항

-
-

## 스크린샷

![image](이미지url)

## 멘토에게

-
-
- 셀프 코드 리뷰를 통해 질문 이어가겠습니다.
14 changes: 14 additions & 0 deletions .github/workflows/delete-merged-branch-config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: delete branch on close pr

on:
pull_request:
types: [closed]

jobs:
delete-branch:
runs-on: ubuntu-latest
steps:
- name: delete branch
uses: SvanBoxel/delete-merged-branch@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Local Netlify folder
.netlify
24 changes: 24 additions & 0 deletions @latest/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# Logs
logs
*.log
npm-debug.log*
yarn-debug.log*
yarn-error.log*
pnpm-debug.log*
lerna-debug.log*

node_modules
dist
dist-ssr
*.local

# Editor directories and files
.vscode/*
!.vscode/extensions.json
.idea
.DS_Store
*.suo
*.ntvs*
*.njsproj
*.sln
*.sw?
13 changes: 13 additions & 0 deletions @latest/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite + React</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.jsx"></script>
</body>
</html>
Loading
Loading