Skip to content

Commit f529ce1

Browse files
authored
Create user home page layout with CourseCard components (#27)
1 parent db24946 commit f529ce1

File tree

9 files changed

+594
-22
lines changed

9 files changed

+594
-22
lines changed

components.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "new-york",
4+
"rsc": true,
5+
"tsx": true,
6+
"tailwind": {
7+
"config": "",
8+
"css": "src/app/globals.css",
9+
"baseColor": "neutral",
10+
"cssVariables": true,
11+
"prefix": ""
12+
},
13+
"iconLibrary": "lucide",
14+
"aliases": {
15+
"components": "@/components",
16+
"utils": "@/lib/utils",
17+
"ui": "@/components/ui",
18+
"lib": "@/lib",
19+
"hooks": "@/hooks"
20+
},
21+
"registries": {}
22+
}

package.json

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,22 @@
1212
"db:studio": "drizzle-kit studio"
1313
},
1414
"dependencies": {
15-
"react": "19.1.0",
16-
"react-dom": "19.1.0",
17-
"react-hook-form": "^7.63.0",
18-
"zod": "^4.1.11",
1915
"@libsql/client": "^0.15.15",
16+
"@radix-ui/react-progress": "^1.1.7",
17+
"@radix-ui/react-slot": "^1.2.3",
18+
"better-auth": "^1.3.26",
19+
"class-variance-authority": "^0.7.1",
20+
"clsx": "^2.1.1",
2021
"drizzle-orm": "^0.44.6",
22+
"lucide-react": "^0.546.0",
2123
"next": "15.5.4",
2224
"next-safe-action": "8.0.11",
25+
"react": "19.1.0",
26+
"react-dom": "19.1.0",
27+
"react-hook-form": "^7.63.0",
28+
"tailwind-merge": "^3.3.1",
2329
"web": "link:@libsql/client/web",
24-
"better-auth": "^1.3.26"
30+
"zod": "^4.1.11"
2531
},
2632
"devDependencies": {
2733
"@eslint/eslintrc": "^3",
@@ -31,10 +37,11 @@
3137
"@types/react-dom": "^19",
3238
"dotenv": "^17.2.3",
3339
"drizzle-kit": "^0.31.5",
34-
"tsx": "^4.20.6",
3540
"eslint": "^9",
3641
"eslint-config-next": "15.5.4",
3742
"tailwindcss": "^4",
43+
"tsx": "^4.20.6",
44+
"tw-animate-css": "^1.4.0",
3845
"typescript": "^5"
3946
}
4047
}

pnpm-lock.yaml

Lines changed: 144 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)