├── .gitignore ├── gatsby-browser.js ├── gatsby-config.js ├── package.json ├── postcss.config.js ├── src ├── components │ ├── Modal │ │ ├── Modal.tsx │ │ └── index.tsx │ └── Sidebar │ │ ├── Section.tsx │ │ ├── Sidebar.tsx │ │ └── index.ts ├── index.css ├── pages │ └── index.tsx └── utils │ └── zustand.ts ├── tailwind.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexluong/gatsby-tailwind-exploration/HEAD/.gitignore -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- 1 | import "./src/index.css"; 2 | -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexluong/gatsby-tailwind-exploration/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexluong/gatsby-tailwind-exploration/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = () => ({ 2 | plugins: [require("tailwindcss")] 3 | }); 4 | -------------------------------------------------------------------------------- /src/components/Modal/Modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexluong/gatsby-tailwind-exploration/HEAD/src/components/Modal/Modal.tsx -------------------------------------------------------------------------------- /src/components/Modal/index.tsx: -------------------------------------------------------------------------------- 1 | export { default } from "./Modal"; 2 | -------------------------------------------------------------------------------- /src/components/Sidebar/Section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexluong/gatsby-tailwind-exploration/HEAD/src/components/Sidebar/Section.tsx -------------------------------------------------------------------------------- /src/components/Sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexluong/gatsby-tailwind-exploration/HEAD/src/components/Sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /src/components/Sidebar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexluong/gatsby-tailwind-exploration/HEAD/src/components/Sidebar/index.ts -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexluong/gatsby-tailwind-exploration/HEAD/src/index.css -------------------------------------------------------------------------------- /src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexluong/gatsby-tailwind-exploration/HEAD/src/pages/index.tsx -------------------------------------------------------------------------------- /src/utils/zustand.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexluong/gatsby-tailwind-exploration/HEAD/src/utils/zustand.ts -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexluong/gatsby-tailwind-exploration/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexluong/gatsby-tailwind-exploration/HEAD/yarn.lock --------------------------------------------------------------------------------