Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
15ad83a
chore: 프로젝트 구조
Tutankhannun Nov 12, 2025
eb51e75
Update issue templates
Tutankhannun Nov 13, 2025
e34f1a0
Merge branch 'main' of https://github.com/Team-STORIX/next-vote-22nd …
Tutankhannun Nov 13, 2025
553aec1
Feat: 기본-레이아웃
Tutankhannun Nov 14, 2025
171032c
Merge branch 'feature/1-기본적인-레이아웃-구성' into develop
Tutankhannun Nov 14, 2025
db9000c
첫화면 완성
codus02 Nov 15, 2025
ebcfc06
signup page done
codus02 Nov 15, 2025
8bcd3fb
signup done
codus02 Nov 15, 2025
c05bbfc
Merge pull request #2 from codus02/layout
Tutankhannun Nov 15, 2025
65ae8e0
Feat: 투표 선택 화면
Tutankhannun Nov 15, 2025
d7dc377
Merge branch 'feature/1-기본적인-레이아웃-구성' into develop
Tutankhannun Nov 15, 2025
2d0414e
feat: 퍼블리싱 커밋 까묵
Tutankhannun Nov 17, 2025
c18a35b
fix
Tutankhannun Nov 17, 2025
3493a5a
fix
Tutankhannun Nov 17, 2025
7be605c
.
Tutankhannun Nov 17, 2025
73ecc28
fix: suspense
Tutankhannun Nov 17, 2025
5b74495
fix: <Suspense> 추가 및 client, server 분리
Tutankhannun Nov 21, 2025
03efe1d
almost done..
codus02 Dec 20, 2025
679741a
chore: trigger vercel deploy
codus02 Dec 20, 2025
a739ae2
suspense
codus02 Dec 20, 2025
f41b0b7
next version..
codus02 Dec 20, 2025
abd0fa0
득표수완료
codus02 Dec 20, 2025
2f940ba
almost done?!
codus02 Dec 20, 2025
b9d5384
Merge pull request #3 from codus02/develop
Tutankhannun Dec 20, 2025
354c3df
style: step2&3 스타일 수정
Tutankhannun Dec 20, 2025
6198297
Merge branch 'develop' of https://github.com/Team-STORIX/next-vote-22…
Tutankhannun Dec 20, 2025
3e2cb14
fix: merge 오류 수정
Tutankhannun Dec 20, 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
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/기능-개발-템플릿.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
---
name: 기능 개발 템플릿
about: 개발해야 하는 기능을 단위 별로 명세합니다.
title: 'Feat: 로그인 기능 구현'
labels: ''
assignees: Tutankhannun

---

## 🤖 설명
No response

## 📋 할일
- []
- []

## 📆 기한

## 📝 메모
No response
41 changes: 41 additions & 0 deletions next-vote-22nd/.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 next-vote-22nd/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://nextjs.org/docs/app/api-reference/cli/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.tsx`. 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.
18 changes: 18 additions & 0 deletions next-vote-22nd/eslint.config.mjs
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
import { defineConfig, globalIgnores } from "eslint/config";
import nextVitals from "eslint-config-next/core-web-vitals";
import nextTs from "eslint-config-next/typescript";

const eslintConfig = defineConfig([
...nextVitals,
...nextTs,
// Override default ignores of eslint-config-next.
globalIgnores([
// Default ignores of eslint-config-next:
".next/**",
"out/**",
"build/**",
"next-env.d.ts",
]),
]);

export default eslintConfig;
7 changes: 7 additions & 0 deletions next-vote-22nd/next.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import type { NextConfig } from "next";

const nextConfig: NextConfig = {
/* config options here */
};

export default nextConfig;
Loading