Skip to content

Commit 97b977a

Browse files
author
im-not-developer
committed
tmeplate init
1 parent 0fd9d65 commit 97b977a

23 files changed

+942
-72
lines changed

.prettierrc

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"singleQuote": true,
3+
"semi": true,
4+
"useTabs": false,
5+
"tabWidth": 2,
6+
"trailingComma": "all",
7+
"printWidth": 80,
8+
"arrowParens": "always",
9+
"orderedImports": true,
10+
"bracketSpacing": true,
11+
"jsxBracketSameLine": false
12+
}

package-lock.json

+131
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+3
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
"react-router": "^6.3.0",
1818
"react-router-dom": "^6.3.0",
1919
"react-scripts": "5.0.1",
20+
"react-slick": "^0.29.0",
21+
"slick-carousel": "^1.8.1",
2022
"typescript": "^4.6.3",
2123
"web-vitals": "^2.1.4"
2224
},
@@ -48,6 +50,7 @@
4850
"devDependencies": {
4951
"@types/react": "^18.0.5",
5052
"@types/react-dom": "^18.0.1",
53+
"@types/react-slick": "^0.23.8",
5154
"autoprefixer": "^10.4.4",
5255
"customize-cra": "^1.0.0",
5356
"postcss": "^8.4.12",

src/App.css

-38
This file was deleted.

src/App.tsx

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ const App = () => {
88
return (
99
<BrowserRouter>
1010
<RotuerScrollTop />
11-
1211
<Routes>
1312
<Route path="" element={<Navigate to="/main" />} />
1413
<Route path="/main" element={<MainhomePage />} />

src/assets/css/custom-react-slick.css

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
.main_content .slick-dots {
2+
bottom: 20px;
3+
}

src/assets/css/global.css

+3-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1-
@import url(./fonts.css);
1+
/* @import url(./fonts.css); */
22
@import url(./tailwind.css);
3+
@import url(./custom-react-slick.css);
34

45
* {
5-
font-family: "Noto Sans KR";
6+
font-family: 'Noto Sans KR';
67
letter-spacing: -0.8px;
78
}
89
*::-webkit-scrollbar {

0 commit comments

Comments
 (0)