Skip to content

Commit 7b38672

Browse files
authored
Merge pull request #9 from recomendapp/new_ui
feat: new UI and performance improvements
2 parents 665e07f + b8d4ef5 commit 7b38672

File tree

262 files changed

+6491
-5658
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

262 files changed

+6491
-5658
lines changed

components.json

Lines changed: 11 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,22 @@
11
{
2-
"style": "default",
3-
"rsc": false,
2+
"$schema": "https://ui.shadcn.com/schema.json",
3+
"style": "new-york",
4+
"rsc": true,
5+
"tsx": true,
46
"tailwind": {
5-
"config": "tailwind.config.js",
7+
"config": "",
68
"css": "src/styles/globals.css",
7-
"baseColor": "slate",
8-
"cssVariables": true
9+
"baseColor": "neutral",
10+
"cssVariables": true,
11+
"prefix": ""
912
},
13+
"iconLibrary": "lucide",
1014
"aliases": {
1115
"components": "@/components",
1216
"utils": "@/lib/utils",
1317
"ui": "@/components/ui",
1418
"lib": "@/lib",
1519
"hooks": "@/hooks"
16-
}
20+
},
21+
"registries": {}
1722
}

next.config.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ const nextConfig: NextConfig = {
1818
// unoptimized: true, // Issue: https://github.com/vercel/next.js/issues/54482
1919
remotePatterns: [
2020
new URL('https://supabase.recomend.app/**'),
21+
new URL('https://api.recomend.app/**'),
2122
new URL('https://image.tmdb.org/**'),
2223
new URL('https://images.justwatch.com/**'),
2324
new URL('https://s.ltrbxd.com/**'),

package.json

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"@radix-ui/react-collapsible": "^1.1.11",
2828
"@radix-ui/react-context-menu": "^2.2.15",
2929
"@radix-ui/react-dialog": "^1.1.5",
30-
"@radix-ui/react-dropdown-menu": "^2.1.15",
30+
"@radix-ui/react-dropdown-menu": "^2.1.16",
3131
"@radix-ui/react-hover-card": "^1.1.14",
3232
"@radix-ui/react-icons": "^1.3.2",
3333
"@radix-ui/react-label": "^2.1.7",
@@ -40,15 +40,15 @@
4040
"@radix-ui/react-select": "^2.2.5",
4141
"@radix-ui/react-separator": "^1.1.7",
4242
"@radix-ui/react-slider": "^1.3.5",
43-
"@radix-ui/react-slot": "^1.2.3",
43+
"@radix-ui/react-slot": "^1.2.4",
4444
"@radix-ui/react-switch": "^1.2.5",
4545
"@radix-ui/react-tabs": "^1.1.12",
4646
"@radix-ui/react-toast": "^1.2.14",
4747
"@radix-ui/react-toggle": "^1.1.1",
4848
"@radix-ui/react-toggle-group": "^1.1.10",
4949
"@radix-ui/react-tooltip": "^1.2.7",
5050
"@recomendapp/api-js": "^1.0.2",
51-
"@recomendapp/types": "^1.0.29",
51+
"@recomendapp/types": "^1.0.32",
5252
"@revenuecat/purchases-js": "^1.16.1",
5353
"@supabase/ssr": "^0.7.0",
5454
"@supabase/supabase-js": "^2.49.8",
@@ -74,8 +74,7 @@
7474
"@types/node": "^22.15.27",
7575
"@types/react": "19.2.5",
7676
"@types/react-dom": "19.2.3",
77-
"autoprefixer": "^10.4.21",
78-
"class-variance-authority": "^0.7.0",
77+
"class-variance-authority": "^0.7.1",
7978
"clsx": "^2.1.1",
8079
"cmdk": "^1.1.1",
8180
"compressorjs": "^1.2.1",
@@ -120,24 +119,24 @@
120119
"recharts": "^2.15.3",
121120
"rtl-detect": "^1.1.2",
122121
"schema-dts": "^1.1.5",
123-
"tailwind-merge": "^3.3.0",
124-
"tailwindcss": "3.3.2",
125-
"tailwindcss-animate": "^1.0.7",
122+
"tailwind-merge": "^3.4.0",
126123
"use-image": "^1.1.4",
127124
"uuid": "^11.1.0",
128125
"vaul": "^1.1.2",
129126
"zod": "^3.25.42",
130127
"zustand": "^5.0.7"
131128
},
132129
"devDependencies": {
133-
"@tailwindcss/container-queries": "^0.1.1",
130+
"@tailwindcss/postcss": "^4.1.17",
134131
"@tailwindcss/typography": "^0.5.9",
135132
"@types/geojson": "^7946.0.16",
136133
"@types/lodash": "^4.17.17",
137134
"@types/negotiator": "^0.6.4",
138135
"@types/rtl-detect": "^1.0.3",
139136
"babel-plugin-react-compiler": "^1.0.0",
140137
"depcheck": "^1.4.7",
138+
"tailwindcss": "4.1.17",
139+
"tw-animate-css": "^1.4.0",
141140
"typescript": "^5.8.3",
142141
"webpack": "^5.99.9"
143142
},

0 commit comments

Comments
 (0)