Skip to content

Commit 0170b1e

Browse files
committed
feat(nextjs): implement ui using tailwind (Header, Footer & Sub Header)
Signed-off-by: Tiyasa Kundu <[email protected]>
1 parent 8fae2ff commit 0170b1e

File tree

80 files changed

+3212
-2617
lines changed

Some content is hidden

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

80 files changed

+3212
-2617
lines changed

components.json

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

package.json

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,20 @@
1212
"@emotion/react": "^11.14.0",
1313
"@emotion/styled": "^11.14.1",
1414
"@mui/material": "^7.2.0",
15+
"@radix-ui/react-avatar": "^1.1.10",
16+
"@radix-ui/react-dialog": "^1.1.14",
17+
"@radix-ui/react-dropdown-menu": "^2.1.15",
18+
"@radix-ui/react-select": "^2.2.5",
19+
"@radix-ui/react-slot": "^1.2.3",
20+
"@tailwindcss/postcss": "^4.1.11",
1521
"array-to-tree": "^3.3.2",
1622
"bootstrap": "^5.3.7",
23+
"class-variance-authority": "^0.7.1",
24+
"clsx": "^2.1.1",
1725
"js-cookie": "^3.0.5",
26+
"lucide-react": "^0.525.0",
1827
"next": "15.3.3",
28+
"postcss": "^8.5.6",
1929
"prop-types": "^15.8.1",
2030
"query-string": "^9.2.1",
2131
"react": "^19.1.0",
@@ -24,11 +34,14 @@
2434
"react-bootstrap-icons": "^1.11.6",
2535
"react-dom": "^19.1.0",
2636
"react-virtualized-tree": "^3.4.1",
27-
"styled-components": "^6.1.19"
37+
"styled-components": "^6.1.19",
38+
"tailwind-merge": "^3.3.1",
39+
"tailwindcss": "^4.1.11"
2840
},
2941
"devDependencies": {
3042
"@eslint/eslintrc": "^3.3.1",
3143
"eslint": "^9.29.0",
32-
"eslint-config-next": "15.3.3"
44+
"eslint-config-next": "15.3.3",
45+
"tw-animate-css": "^1.3.5"
3346
}
3447
}

0 commit comments

Comments
 (0)