Skip to content
Open
Show file tree
Hide file tree
Changes from 20 commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
2d5e994
for setting changed config
seunghyun-24 Jun 26, 2025
1629eeb
add and change image files
seunghyun-24 Jun 26, 2025
ea62395
change color
seunghyun-24 Jun 26, 2025
a614c00
change size
seunghyun-24 Jun 26, 2025
3dff41c
for pages, add ui and lib settings
seunghyun-24 Jun 26, 2025
495576a
change login pages, much prettier
seunghyun-24 Jun 26, 2025
f341d6c
change register pages, much prettier
seunghyun-24 Jun 26, 2025
9b4d996
change main page
seunghyun-24 Jun 26, 2025
76607ec
make Header
seunghyun-24 Jun 26, 2025
5842858
make action bar, it will be used in problem page
seunghyun-24 Jun 26, 2025
49511c8
make Footer
seunghyun-24 Jun 26, 2025
cdea11d
change problem main page
seunghyun-24 Jun 26, 2025
49b8edd
change contest page
seunghyun-24 Jun 26, 2025
93b4f4b
cute duck button, but it will be..... dead
seunghyun-24 Jun 26, 2025
9d093c6
change TACModal, in register page button VIEW
seunghyun-24 Jun 26, 2025
494919a
make table like contest (add shadow)
seunghyun-24 Jun 26, 2025
14b3623
fix change log
seunghyun-24 Jun 26, 2025
4d024b0
fix lint error
seunghyun-24 Jun 26, 2025
e9f3a54
fix ci format
seunghyun-24 Jun 30, 2025
1e0377a
prettier
seunghyun-24 Jun 30, 2025
b66e171
table -> component table
seunghyun-24 Aug 11, 2025
decf6dc
make table components and make data & types
seunghyun-24 Aug 28, 2025
9813b33
mock data
seunghyun-24 Aug 28, 2025
a02b87f
chore: remove Actionbar files from PR
seunghyun-24 Aug 28, 2025
0632e1e
chore: remove duck button files from PR
seunghyun-24 Aug 28, 2025
9373851
chore: remove unnecessary ui files from PR
seunghyun-24 Aug 28, 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
10 changes: 8 additions & 2 deletions .eslintrc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
{
"parser": "@typescript-eslint/parser",
"extends": ["eslint:recommended", "next", "next/core-web-vitals", "prettier", "plugin:@typescript-eslint/recommended"],
"extends": [
"eslint:recommended",
"next",
"next/core-web-vitals",
"prettier",
"plugin:@typescript-eslint/recommended"
],
"rules": {
"prefer-const": "warn",
"no-undef": "off",
Expand All @@ -16,4 +22,4 @@
"@next/next/no-img-element": "off",
"@typescript-eslint/no-empty-interface": "off"
}
}
}
3 changes: 1 addition & 2 deletions .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ about: Provide guideline for a new PR
title: ''
labels: ''
assignees: plzfday

---

## What is this feature?
Expand All @@ -13,6 +12,6 @@ assignees: plzfday

## Task Details

- [ ]
- [ ]

## Reference Materials (Optional)
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,4 +47,4 @@ jobs:
run: yarn run lint

- name: Run prettier
run: yarn run prettier
run: yarn run prettier:check
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,5 @@ yarn-error.log*
# typescript
*.tsbuildinfo
next-env.d.ts

/src/data/
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# bibimbap-frontend

The frontend of Bibimbap

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).
Expand Down
1 change: 1 addition & 0 deletions __tests__/pages/landing.test.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import '@testing-library/jest-dom';
import { render, screen } from '@testing-library/react';

import Home from '@/app/page';

it('renders 6 change logs', () => {
Expand Down
21 changes: 21 additions & 0 deletions components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "new-york",
"rsc": true,
"tsx": true,
"tailwind": {
"config": "tailwind.config.ts",
"css": "src/app/globals.css",
"baseColor": "neutral",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils",
"ui": "@/components/ui",
"lib": "@/lib",
"hooks": "@/hooks"
},
"iconLibrary": "lucide"
}
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"start": "next start",
"lint": "next lint",
"prettier": "npx prettier --config ./.prettierrc --write **/*.{ts,tsx}",
"prettier:check": "npx prettier --config ./.prettierrc --check **/*.{ts,tsx}",
"test": "jest",
"test:watch": "jest --watch"
},
Expand Down
Binary file added public/duck.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading