- intial gatsbyJS setup

- setting up tailwindcss and other plugins
- designing the landing page
- creating a reusable button component
This commit is contained in:
Amruth Pillai
2020-07-03 13:00:46 +05:30
parent d2e3227d01
commit 70ef926b70
18 changed files with 19842 additions and 0 deletions

18
tailwind.config.js Normal file
View File

@ -0,0 +1,18 @@
module.exports = {
purge: ["./src/**/*.js", "./src/**/*.jsx", "./src/**/*.ts", "./src/**/*.tsx"],
theme: {
container: {
center: true,
},
extend: {
colors: {
primary: "var(--color-primary)",
"primary-dark": "var(--color-primary-dark)",
inverse: "var(--color-inverse)",
"inverse-dark": "var(--color-inverse-dark)",
},
},
},
variants: {},
plugins: [],
};