Skip to content

Commit e3d1a33

Browse files
authored
Add sidebar and routes (#1)
1 parent 842149f commit e3d1a33

24 files changed

+2289
-4342
lines changed

index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta charset="UTF-8" />
55
<meta name="description" content="This is a React project created with Create Node App" />
6-
<link rel="icon" type="image/x-icon" href="/favicon.ico" />
6+
<link rel="icon" type="image/x-icon" href="/public/icons/logo.svg" />
77
<link rel="apple-touch-icon" href="/apple-touch-icon.png" sizes="180x180" />
88
<link rel="mask-icon" href="/mask-icon.svg" color="#FFFFFF" />
99
<meta name="theme-color" content="#ffffff" />

package.json

+6-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@
77
"format": "prettier --ignore-path .gitignore -u --write .",
88
"lint": "eslint .",
99
"lint:fix": "eslint . --fix",
10-
"type-check": "tsc --noEmit"
10+
"type-check": "tsc --noEmit",
11+
"build-css": "tailwindcss build styles.css -o output.css"
1112
},
1213
"version": "0.1.0",
1314
"description": "A Web App created by create-awesome-node-app",
@@ -29,6 +30,7 @@
2930
"dependencies": {
3031
"react": "^18.2.0",
3132
"react-dom": "^18.2.0",
33+
"react-icons": "^5.1.0",
3234
"react-router-dom": "^6.3.0",
3335
"web-vitals": "^2.1.4"
3436
},
@@ -41,6 +43,7 @@
4143
"@typescript-eslint/eslint-plugin": "^5.27.1",
4244
"@typescript-eslint/parser": "^5.27.1",
4345
"@vitejs/plugin-react": "^3.1.0",
46+
"autoprefixer": "^10.4.19",
4447
"eslint": "^7.32.0",
4548
"eslint-config-prettier": "^8.5.0",
4649
"eslint-plugin-import": "^2.26.0",
@@ -49,8 +52,10 @@
4952
"eslint-plugin-react": "^7.30.0",
5053
"eslint-plugin-react-hooks": "^4.6.0",
5154
"identity-obj-proxy": "^3.0.0",
55+
"postcss": "^8.4.38",
5256
"prettier": "^2.6.2",
5357
"sass": "^1.58.1",
58+
"tailwindcss": "^3.4.3",
5459
"typescript": "^4.9.5",
5560
"vite": "^4.1.0",
5661
"vite-plugin-eslint": "^1.8.1",

0 commit comments

Comments
 (0)