Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
ba8a22a
[Feat] 초기 화면 설정 및 파일 구성
Mar 25, 2026
b1ac6e1
[Feat] 채팅방 헤더 구현
Mar 25, 2026
83cd1b2
[Deploy] 배포
Mar 25, 2026
093006e
[Feat] 채팅 입력 구현
Mar 25, 2026
6b78b21
[Feat] 채팅 localStorage 저장 및 채팅 노출
Mar 26, 2026
52c9ff4
[Rename] 파일 및 폴더명 수정
Mar 27, 2026
fe7bcb2
[Style] 전역변수 선언 및 전체 CSS 코드 수정
Mar 27, 2026
f1d483a
[Refactor] user와 message 데이터 json 파일에 저장
Mar 27, 2026
90af71c
[Design] 채팅 입력창 텍스트 스타일 수정
Mar 28, 2026
4d14089
[Design] 상대방 채팅 프로필 위치 수정
Mar 28, 2026
918679a
[Design] 채팅 디자인 수정
Mar 28, 2026
a48e863
[Design] 연속 채팅 레디어스 값 변경
Mar 30, 2026
24d3cbf
[Feat] 채팅목록에서 채팅방으로 이동 설정
Apr 4, 2026
3fa9668
[Design] CSS 전역 변수 일부 수정
Apr 4, 2026
4e29700
[Refactor] 메세지 데이터 구조 변경
Apr 5, 2026
28483d0
[Feat] 채팅목록 헤더 구현
Apr 5, 2026
48ef0b1
[Feat] 채팅목록 검색란 추가
KOJ50 Apr 6, 2026
6cac8b3
[Feat] 현재 위치 기능 구현
KOJ50 Apr 6, 2026
3945df7
[Feat] 채팅 목록 내 알람 관련 기능 추가
KOJ50 Apr 7, 2026
d90c069
[Feat] 채팅목록 NavBar 추가
KOJ50 Apr 7, 2026
1aaf073
[Feat] 채팅 목록 유저 및 채팅방 샘플 데이터 수정
KOJ50 Apr 24, 2026
e118075
[Feat] 채팅 목록 구현
KOJ50 Apr 24, 2026
64a2784
[Feat] 채팅방 라우팅 및 채팅방별 데이터 연동
KOJ50 Apr 24, 2026
6fdb541
[Design] 컴포넌트 위치 수정
KOJ50 Apr 24, 2026
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
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
dist
.DS_Store
23 changes: 23 additions & 0 deletions eslint.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
import js from '@eslint/js'
import globals from 'globals'
import reactHooks from 'eslint-plugin-react-hooks'
import reactRefresh from 'eslint-plugin-react-refresh'
import tseslint from 'typescript-eslint'
import { defineConfig, globalIgnores } from 'eslint/config'

export default defineConfig([
globalIgnores(['dist']),
{
files: ['**/*.{ts,tsx}'],
extends: [
js.configs.recommended,
tseslint.configs.recommended,
reactHooks.configs.flat.recommended,
reactRefresh.configs.vite,
],
languageOptions: {
ecmaVersion: 2020,
globals: globals.browser,
},
},
])
17 changes: 17 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<link
rel="icon"
type="image/svg+xml"
href="/public/instagram-favicon.svg"
/>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Instagram</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/src/main.tsx"></script>
</body>
</html>
Loading