implemented gpt 4 AI interface

This commit is contained in:
Harivansh Rathi 2024-12-06 01:13:34 -05:00
parent e0ad860ab6
commit 88f0bc7a0c
12 changed files with 2891 additions and 110 deletions

View file

@ -1,4 +1,6 @@
/** @type {import('tailwindcss').Config} */
import typography from '@tailwindcss/typography';
export default {
darkMode: ["class"],
content: ['./index.html', './src/**/*.{js,ts,jsx,tsx}'],
@ -57,7 +59,19 @@ export default {
md: "0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)",
lg: "0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)",
},
typography: {
DEFAULT: {
css: {
maxWidth: 'none',
color: 'inherit',
pre: {
backgroundColor: 'rgb(17, 24, 39)',
color: 'rgb(229, 231, 235)',
},
},
},
},
},
},
plugins: [],
};
plugins: [typography],
}