Skip to content

Commit

Permalink
shadcn and openai popover disclaimer
Browse files Browse the repository at this point in the history
  • Loading branch information
lassejaco committed Sep 8, 2024
1 parent 8da04b3 commit de0dd23
Show file tree
Hide file tree
Showing 11 changed files with 324 additions and 13 deletions.
20 changes: 20 additions & 0 deletions devcon/components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "new-york",
"rsc": false,
"tsx": true,
"tailwind": {
"config": "tailwind.config.js",
"css": "src/assets/css/global/tailwind.scss",
"baseColor": "neutral",
"cssVariables": false,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/shadcn/lib/utils",
"ui": "@/components/ui",
"lib": "@/shadcn/lib",
"hooks": "@/hooks"
}
}
7 changes: 7 additions & 0 deletions devcon/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,19 +26,24 @@
"@next/bundle-analyzer": "^14.2.7",
"@notionhq/client": "^0.4.11",
"@prisma/client": "5.16.1",
"@radix-ui/react-icons": "^1.3.0",
"@radix-ui/react-popover": "^1.1.1",
"@sentry/nextjs": "^7.13.0",
"@socialgouv/matomo-next": "^1.8.0",
"@tanstack/react-query": "^5.49.2",
"@tippyjs/react": "^4.2.6",
"@web3modal/wagmi": "^5.0.5",
"class-variance-authority": "^0.7.0",
"classnames": "^2.5.1",
"clsx": "^2.1.1",
"cross-env": "^7.0.3",
"dotenv": "^15.0.0",
"ethers": "^5.5.4",
"framer-motion": "^10.16.4",
"gray-matter": "^4.0.3",
"gsap": "^3.5.0",
"jose": "^5.6.3",
"lucide-react": "^0.439.0",
"markdown-it": "^12.3.2",
"markdown-it-video": "^0.6.3",
"matter-js": "^0.18.0",
Expand Down Expand Up @@ -73,6 +78,8 @@
"slick": "^1.12.2",
"slick-carousel": "^1.8.1",
"slugify": "^1.6.5",
"tailwind-merge": "^2.5.2",
"tailwindcss-animate": "^1.0.7",
"three": "^0.119.1",
"three-orbit-controls": "^82.1.0",
"tinacms": "1.5.28",
Expand Down
6 changes: 2 additions & 4 deletions devcon/tailwind.config.js
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
darkMode: ['class'],
content: ['src/**/*.{ts,tsx}', '../lib/**/*.{ts,tsx}'],
theme: {
extend: {},
},
plugins: [],
plugins: [require("tailwindcss-animate")],
}
3 changes: 2 additions & 1 deletion devcon/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
// "module": "nodenext",
// "moduleResolution": "nodenext",
"paths": {
"lib/*": ["../../lib/*"]
"lib/*": ["../../lib/*"],
"@/*": ["./../../lib/*"]
}
},
"ts-node": {
Expand Down
Loading

0 comments on commit de0dd23

Please sign in to comment.