Skip to content

Commit f1d9826

Browse files
committed
feat: Modern UI redesign with Next.js 15 + shadcn/ui (#3071)
Signed-off-by: Gauarv Chaudhary <[email protected]>
1 parent e8d0134 commit f1d9826

File tree

81 files changed

+13258
-0
lines changed

Some content is hidden

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

81 files changed

+13258
-0
lines changed

.gitignore

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
1+
# Dependencies
2+
node_modules
3+
/.pnp
4+
.pnp.js
5+
6+
# Build output
7+
.next
8+
out
9+
build
10+
dist
11+
12+
# Testing
13+
coverage
14+
15+
# Production
16+
*.log
17+
npm-debug.log*
18+
yarn-debug.log*
19+
yarn-error.log*
20+
21+
# Environment files
22+
.env
23+
.env.local
24+
.env.development.local
25+
.env.test.local
26+
.env.production.local
27+
28+
# IDE
29+
.idea
30+
.vscode
31+
*.swp
32+
*.swo
33+
.DS_Store
34+
35+
# TypeScript
36+
*.tsbuildinfo
37+
next-env.d.ts
38+
39+
# Misc
40+
.vercel
41+
*.pem
42+
43+
# Debug
44+
.yarn/install-state.gz
45+
46+
# Legacy static files (not used in Next.js)
47+
old_static/

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": "tailwind.config.ts",
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+
}

next.config.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/** @type {import('next').NextConfig} */
2+
const nextConfig = {
3+
output: 'export',
4+
images: {
5+
unoptimized: true,
6+
},
7+
trailingSlash: true,
8+
}
9+
10+
module.exports = nextConfig

0 commit comments

Comments
 (0)