Skip to content

Commit

Permalink
install
Browse files Browse the repository at this point in the history
  • Loading branch information
chakkun1121 authored Jan 18, 2024
1 parent 5b382ca commit 6f1c563
Show file tree
Hide file tree
Showing 5 changed files with 617 additions and 54 deletions.
17 changes: 17 additions & 0 deletions components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "new-york",
"rsc": true,
"tsx": true,
"tailwind": {
"config": "tailwind.config.ts",
"css": "app/globals.css",
"baseColor": "gray",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils"
}
}
6 changes: 6 additions & 0 deletions lib/utils.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { type ClassValue, clsx } from "clsx"
import { twMerge } from "tailwind-merge"

export function cn(...inputs: ClassValue[]) {
return twMerge(clsx(inputs))
}
6 changes: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,11 @@
"@mdx-js/react": "^3.0.0",
"@next/mdx": "^14.0.4",
"@next/third-parties": "14.0.5-canary.26",
"@radix-ui/react-icons": "^1.3.0",
"@types/mdx": "^2.0.10",
"@uidotdev/usehooks": "^2.4.1",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.0",
"fast-xml-parser": "^4.3.2",
"next": "14.0.4",
"next-auth": "^4.24.5",
Expand All @@ -30,6 +33,9 @@
"recoil": "^0.7.7",
"recoil-persist": "^5.1.0",
"remark-gfm": "v3",
"shadcn-ui": "^0.8.0",
"tailwind-merge": "^2.2.0",
"tailwindcss-animate": "^1.0.7",
"uuidv7": "^0.6.3"
},
"devDependencies": {
Expand Down
Loading

0 comments on commit 6f1c563

Please sign in to comment.