Skip to content

Commit b1d4c6d

Browse files
committed
feat: collaborators page, scroll and hovercard
1 parent 7186255 commit b1d4c6d

12 files changed

+671
-1
lines changed

next.config.js

+3
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,9 @@ const nextConfig = {
33
experimental: {
44
appDir: true,
55
},
6+
images: {
7+
domains: ['github.com'],
8+
},
69
webpack(config) {
710
config.module.rules.push({
811
test: /\.(ogg|mp3|wav|mpe?g)$/i,

package.json

+5
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99
"lint": "next lint"
1010
},
1111
"dependencies": {
12+
"@radix-ui/react-hover-card": "^1.0.5",
13+
"@radix-ui/react-icons": "^1.3.0",
14+
"@radix-ui/react-scroll-area": "^1.0.3",
1215
"@types/node": "18.15.11",
1316
"@types/react": "18.0.35",
1417
"@types/react-dom": "18.0.11",
@@ -24,11 +27,13 @@
2427
"eslint-plugin-react": "^7.30.0",
2528
"eslint-plugin-react-hooks": "^4.5.0",
2629
"framer-motion": "^10.11.6",
30+
"grommet-icons": "^4.10.0",
2731
"next": "13.3.0",
2832
"postcss": "8.4.21",
2933
"prettier": "^2.6.2",
3034
"react": "18.2.0",
3135
"react-dom": "18.2.0",
36+
"scrollex": "^2.0.1",
3237
"tailwindcss": "3.3.1",
3338
"typescript": "5.0.4",
3439
"url-loader": "^4.1.1",

0 commit comments

Comments
 (0)