Skip to content

Commit

Permalink
๐Ÿ’„FE-33 ๊ฒ€์ƒ‰ ํŽ˜์ด์ง€ UI (#10)
Browse files Browse the repository at this point in the history
* .nvmrc ๋ฒ„์ „ ์ˆ˜์ •

* ํฐํŠธ ๋ฐ ๊ณต์šฉ์ปฌ๋Ÿฌ ์ถ”๊ฐ€ (#6)

* font-family ์ถ”๊ฐ€

* tailwind common color ์ถ”๊ฐ€

* color ๋ช… ๋ณ€๊ฒฝ

* lang ์ˆ˜์ •

---------

Co-authored-by: ์ „์œ ๋ฏผ <[email protected]>

* ๐Ÿ’„ ๊ณต์šฉ ์ปดํฌ๋„ŒํŠธ shadcn ui ์ถ”๊ฐ€ (#7)

* ๐Ÿ’„ Feat: shadcn-ui init

* ๐Ÿ’„ Feat: add toast ui

* Feat: add textarea ui

* Feat: add switch ui

* Feat: add radio-group ui

* Feat: add label ui

* Feat: add input ui

* Feat: add form ui

* Feat: add button ui

* Feat: add dropdown-menu ui

* Feat: add card ui

* Feat: add badge ui

* Feat: add avatar ui

* Feat: add alert dialog ui

* Chore: add eslint rules

* Chore: add shadcn ui

* โœจFeat: SearchBar UI ์ดˆ์•ˆ ์™„์„ฑ

* styles: tailwind css ํฐํŠธ ์‚ฌ์ด์ฆˆ ์ถ”๊ฐ€

* feat: RecentSearches UI ์ดˆ์•ˆ ์™„์„ฑ

* ๏ฟฝstyles: SearchResults UI ์ˆ˜์ •

* ๏ฟฝstyles: RecentSearches UI ์ˆ˜์ •

* โœจstyles: ๋ฐ˜์‘ํ˜•  UI ์ถ”๊ฐ€

* FE-33 fix: build ์˜ค๋ฅ˜ ์ˆ˜์ • ์ค‘

* FE-33 fix: build ์˜ค๋ฅ˜ ํ•ด๊ฒฐ ์ค‘

* FE-33 fix: build ์˜ค๋ฅ˜ ํ•ด๊ฒฐ ์ค‘

* FE-33 fix: build ์˜ค๋ฅ˜ ํ•ด๊ฒฐ ์ค‘

* fix: build ์˜ค๋ฅ˜ ํ•ด๊ฒฐ ์ค‘

---------

Co-authored-by: ์ „์œ ๋ฏผ <[email protected]>
Co-authored-by: JeonYumin94 <[email protected]>
Co-authored-by: MOON <[email protected]>
  • Loading branch information
4 people authored Jul 11, 2024
1 parent 37538f7 commit 1c6f372
Show file tree
Hide file tree
Showing 38 changed files with 2,489 additions and 548 deletions.
19 changes: 6 additions & 13 deletions .eslintrc.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@


module.exports = {
parser: '@typescript-eslint/parser',
parserOptions: {
Expand All @@ -12,7 +10,7 @@ module.exports = {
},
extends: [
'eslint:recommended',
"plugin:@tanstack/eslint-plugin-query/recommended",
'plugin:@tanstack/eslint-plugin-query/recommended',
'plugin:react/recommended',
'plugin:react-hooks/recommended',
'plugin:@typescript-eslint/recommended',
Expand All @@ -23,20 +21,15 @@ module.exports = {
'next/core-web-vitals',
'prettier',
],
plugins: [
'react',
'react-hooks',
'@typescript-eslint',
'jsx-a11y',
'import',
'prettier',
],
plugins: ['react', 'react-hooks', '@typescript-eslint', 'jsx-a11y', 'import', 'prettier'],
rules: {
'prettier/prettier': 'error',
'react/react-in-jsx-scope': 'off', // Next.js doesn't require React to be in scope
'react/prop-types': 'off',
'no-console':'error',
"react/jsx-props-no-spreading":'off'
'no-console': 'error',
'react/jsx-props-no-spreading': 'off',
'no-use-before-define': 'off',
'@typescript-eslint/no-use-before-define': ['off'],
},
settings: {
react: {
Expand Down
2 changes: 1 addition & 1 deletion .nvmrc
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v20.14.0
v20.15.0
5 changes: 4 additions & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,8 @@
}
]
}
}
},
"cSpell.words": [
"clsx"
]
}
17 changes: 17 additions & 0 deletions components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "default",
"rsc": false,
"tsx": true,
"tailwind": {
"config": "tailwind.config.ts",
"css": "src/styles/globals.css",
"baseColor": "slate",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils"
}
}
Loading

0 comments on commit 1c6f372

Please sign in to comment.