Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
47 commits
Select commit Hold shift + click to select a range
5f246bb
docs: update readme
sprint-edu Jun 23, 2025
636d93f
Create pull-request-command.md
Jul 11, 2025
6e16955
Create landing page
Jul 14, 2025
a7e156c
Create login page and Add color palette
Jul 14, 2025
81f4c9f
Create signup page
Jul 14, 2025
1271617
Update PR command
Jul 14, 2025
96c72c1
Add google analytics and Modified README.md
Jul 14, 2025
d8603b7
Remove duplicate css
Jul 14, 2025
4c2dbe5
Delete pr_comment directory
jwj2087 Jul 18, 2025
20b14c3
Merge branch 'basic-조원정' into basic-조원정
keepoki Jul 20, 2025
869519b
Reflecting the feedback
jwj2087 Jul 22, 2025
e9a35b5
Change Unit (vw->px)
jwj2087 Jul 24, 2025
b2a291b
Update Home tablet screen
jwj2087 Jul 24, 2025
dfeebd2
Update Home mobile screen
jwj2087 Jul 24, 2025
0b0ebde
Update Forms mobile screen
jwj2087 Jul 24, 2025
afa19ff
Change Spaces(4->2)
jwj2087 Jul 24, 2025
c5c834d
Divide palette.css
Jul 25, 2025
3b62c1d
로그인페이지 유효성검사 구현
Jul 25, 2025
c01a38c
UPDATE input 유효성검사
jwj2087 Jul 27, 2025
2dd9f15
CREATE modal 알림창
jwj2087 Jul 27, 2025
d13df8d
CREATE visibility 아이콘기능
jwj2087 Jul 27, 2025
d94d294
ADD 공유시 제목,내용
jwj2087 Jul 27, 2025
539ccd0
feat:ArticleService 구현
Aug 3, 2025
8036f06
feat: ProductService 구현
Aug 3, 2025
dd9f7e6
chore: DS_Store 제거
Aug 3, 2025
0a77601
docs: READEME 파일내용 추가
Aug 3, 2025
72483f1
chore: .gitignore 추가
Aug 4, 2025
0534a98
feat: 헤더컴포넌트
Aug 9, 2025
ba0f582
feat: BestProducts 기능 구현
Aug 10, 2025
f4ce80d
feat:Products List 구현
Aug 10, 2025
823aeb2
refactor: 이전버전파일 정리
Aug 10, 2025
c54f5fd
feat: Dropdown 컴포넌트 구현
Aug 11, 2025
30ac2ec
feat:Pagination 구현
Aug 12, 2025
949fa09
fix: icon 파일 누락 수정
Aug 19, 2025
88dde41
chore: axios package.json 명시
Aug 19, 2025
f71adb2
feat: 반응형 구현
Aug 20, 2025
1b8b5dd
refactor: HomePage 마이그레이션
Aug 22, 2025
00e56e0
feat: Form page 구현
Aug 24, 2025
1d1a7fa
chore: 디렉토리구조 정리
Aug 24, 2025
bc3472e
feat: 백엔드 서버 구현
Aug 24, 2025
5cd89ba
feat: 상품등록페이지
Aug 24, 2025
cf6b3aa
build: Next.js 환경 구축
Sep 18, 2025
1386fa7
feat: BoardPage 구현
Sep 26, 2025
05ba8a3
feat: 페이지 css 구현
Sep 27, 2025
e71724c
feat: tanstack query로crud 구현
Sep 27, 2025
88ed293
feat: 수정하기 구현
Sep 27, 2025
8fbdec2
feat: 댓글 api 구현
Sep 27, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
Binary file added .DS_Store
Binary file not shown.
41 changes: 41 additions & 0 deletions 8-sprint-fe/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.

# dependencies
/node_modules
/.pnp
.pnp.*
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases
!.yarn/versions

# testing
/coverage

# next.js
/.next/
/out/

# production
/build

# misc
.DS_Store
*.pem

# debug
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.pnpm-debug.log*

# env files (can opt-in for committing if needed)
.env*

# vercel
.vercel

# typescript
*.tsbuildinfo
next-env.d.ts
36 changes: 36 additions & 0 deletions 8-sprint-fe/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
This is a [Next.js](https://nextjs.org) project bootstrapped with [`create-next-app`](https://github.com/vercel/next.js/tree/canary/packages/create-next-app).

## Getting Started

First, run the development server:

```bash
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
```

Open [http://localhost:3000](http://localhost:3000) with your browser to see the result.

You can start editing the page by modifying `app/page.js`. The page auto-updates as you edit the file.

This project uses [`next/font`](https://nextjs.org/docs/app/building-your-application/optimizing/fonts) to automatically optimize and load [Geist](https://vercel.com/font), a new font family for Vercel.

## Learn More

To learn more about Next.js, take a look at the following resources:

- [Next.js Documentation](https://nextjs.org/docs) - learn about Next.js features and API.
- [Learn Next.js](https://nextjs.org/learn) - an interactive Next.js tutorial.

You can check out [the Next.js GitHub repository](https://github.com/vercel/next.js) - your feedback and contributions are welcome!

## Deploy on Vercel

The easiest way to deploy your Next.js app is to use the [Vercel Platform](https://vercel.com/new?utm_medium=default-template&filter=next.js&utm_source=create-next-app&utm_campaign=create-next-app-readme) from the creators of Next.js.

Check out our [Next.js deployment documentation](https://nextjs.org/docs/app/building-your-application/deploying) for more details.
25 changes: 25 additions & 0 deletions 8-sprint-fe/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
import { dirname } from "path";
import { fileURLToPath } from "url";
import { FlatCompat } from "@eslint/eslintrc";

const __filename = fileURLToPath(import.meta.url);
const __dirname = dirname(__filename);

const compat = new FlatCompat({
baseDirectory: __dirname,
});

const eslintConfig = [
...compat.extends("next/core-web-vitals"),
{
ignores: [
"node_modules/**",
".next/**",
"out/**",
"build/**",
"next-env.d.ts",
],
},
];

export default eslintConfig;
7 changes: 7 additions & 0 deletions 8-sprint-fe/jsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"compilerOptions": {
"paths": {
"@/*": ["./src/*"]
}
}
}
4 changes: 4 additions & 0 deletions 8-sprint-fe/next.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
/** @type {import('next').NextConfig} */
const nextConfig = {};

export default nextConfig;
Loading