├── .eslintrc.json ├── .gitignore ├── README.md ├── components ├── Buttons │ └── Buttons.tsx ├── LayoutGA.js └── Sidebar │ └── Sidebar.tsx ├── img ├── cssbuttons.png └── cssbuttons1.png ├── next-env.d.ts ├── next.config.js ├── package.json ├── pages ├── _app.tsx ├── _document.tsx ├── buttons │ ├── 0.tsx │ ├── 1.tsx │ ├── 10.tsx │ ├── 11.tsx │ ├── 12.tsx │ ├── 13.tsx │ ├── 14.tsx │ ├── 15.tsx │ ├── 16.tsx │ ├── 17.tsx │ ├── 18.tsx │ ├── 19.tsx │ ├── 2.tsx │ ├── 20.tsx │ ├── 21.tsx │ ├── 22.tsx │ ├── 23.tsx │ ├── 24.tsx │ ├── 25.tsx │ ├── 26.tsx │ ├── 27.tsx │ ├── 28.tsx │ ├── 29.tsx │ ├── 3.tsx │ ├── 30.tsx │ ├── 31.tsx │ ├── 32.tsx │ ├── 33.tsx │ ├── 34.tsx │ ├── 35.tsx │ ├── 36.tsx │ ├── 37.tsx │ ├── 38.tsx │ ├── 39.tsx │ ├── 4.tsx │ ├── 40.tsx │ ├── 41.tsx │ ├── 42.tsx │ ├── 43.tsx │ ├── 44.tsx │ ├── 45.tsx │ ├── 46.tsx │ ├── 47.tsx │ ├── 48.tsx │ ├── 49.tsx │ ├── 5.tsx │ ├── 50.tsx │ ├── 51.tsx │ ├── 52.tsx │ ├── 53.tsx │ ├── 54.tsx │ ├── 55.tsx │ ├── 56.tsx │ ├── 57.tsx │ ├── 58.tsx │ ├── 59.tsx │ ├── 6.tsx │ ├── 60.tsx │ ├── 61.tsx │ ├── 62.tsx │ ├── 7.tsx │ ├── 8.tsx │ └── 9.tsx └── index.tsx ├── postcss.config.js ├── public ├── ads.txt ├── favicon.ico └── vercel.svg ├── scripts └── generate-sitemap.js ├── styles └── globals.css ├── tailwind.config.js ├── tsconfig.json └── utils └── analytics.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/README.md -------------------------------------------------------------------------------- /components/Buttons/Buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/components/Buttons/Buttons.tsx -------------------------------------------------------------------------------- /components/LayoutGA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/components/LayoutGA.js -------------------------------------------------------------------------------- /components/Sidebar/Sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/components/Sidebar/Sidebar.tsx -------------------------------------------------------------------------------- /img/cssbuttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/img/cssbuttons.png -------------------------------------------------------------------------------- /img/cssbuttons1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/img/cssbuttons1.png -------------------------------------------------------------------------------- /next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/next-env.d.ts -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/next.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/package.json -------------------------------------------------------------------------------- /pages/_app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/_app.tsx -------------------------------------------------------------------------------- /pages/_document.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/_document.tsx -------------------------------------------------------------------------------- /pages/buttons/0.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/0.tsx -------------------------------------------------------------------------------- /pages/buttons/1.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/1.tsx -------------------------------------------------------------------------------- /pages/buttons/10.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/10.tsx -------------------------------------------------------------------------------- /pages/buttons/11.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/11.tsx -------------------------------------------------------------------------------- /pages/buttons/12.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/12.tsx -------------------------------------------------------------------------------- /pages/buttons/13.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/13.tsx -------------------------------------------------------------------------------- /pages/buttons/14.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/14.tsx -------------------------------------------------------------------------------- /pages/buttons/15.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/15.tsx -------------------------------------------------------------------------------- /pages/buttons/16.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/16.tsx -------------------------------------------------------------------------------- /pages/buttons/17.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/17.tsx -------------------------------------------------------------------------------- /pages/buttons/18.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/18.tsx -------------------------------------------------------------------------------- /pages/buttons/19.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/19.tsx -------------------------------------------------------------------------------- /pages/buttons/2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/2.tsx -------------------------------------------------------------------------------- /pages/buttons/20.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/20.tsx -------------------------------------------------------------------------------- /pages/buttons/21.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/21.tsx -------------------------------------------------------------------------------- /pages/buttons/22.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/22.tsx -------------------------------------------------------------------------------- /pages/buttons/23.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/23.tsx -------------------------------------------------------------------------------- /pages/buttons/24.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/24.tsx -------------------------------------------------------------------------------- /pages/buttons/25.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/25.tsx -------------------------------------------------------------------------------- /pages/buttons/26.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/26.tsx -------------------------------------------------------------------------------- /pages/buttons/27.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/27.tsx -------------------------------------------------------------------------------- /pages/buttons/28.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/28.tsx -------------------------------------------------------------------------------- /pages/buttons/29.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/29.tsx -------------------------------------------------------------------------------- /pages/buttons/3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/3.tsx -------------------------------------------------------------------------------- /pages/buttons/30.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/30.tsx -------------------------------------------------------------------------------- /pages/buttons/31.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/31.tsx -------------------------------------------------------------------------------- /pages/buttons/32.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/32.tsx -------------------------------------------------------------------------------- /pages/buttons/33.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/33.tsx -------------------------------------------------------------------------------- /pages/buttons/34.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/34.tsx -------------------------------------------------------------------------------- /pages/buttons/35.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/35.tsx -------------------------------------------------------------------------------- /pages/buttons/36.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/36.tsx -------------------------------------------------------------------------------- /pages/buttons/37.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/37.tsx -------------------------------------------------------------------------------- /pages/buttons/38.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/38.tsx -------------------------------------------------------------------------------- /pages/buttons/39.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/39.tsx -------------------------------------------------------------------------------- /pages/buttons/4.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/4.tsx -------------------------------------------------------------------------------- /pages/buttons/40.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/40.tsx -------------------------------------------------------------------------------- /pages/buttons/41.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/41.tsx -------------------------------------------------------------------------------- /pages/buttons/42.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/42.tsx -------------------------------------------------------------------------------- /pages/buttons/43.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/43.tsx -------------------------------------------------------------------------------- /pages/buttons/44.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/44.tsx -------------------------------------------------------------------------------- /pages/buttons/45.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/45.tsx -------------------------------------------------------------------------------- /pages/buttons/46.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/46.tsx -------------------------------------------------------------------------------- /pages/buttons/47.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/47.tsx -------------------------------------------------------------------------------- /pages/buttons/48.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/48.tsx -------------------------------------------------------------------------------- /pages/buttons/49.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/49.tsx -------------------------------------------------------------------------------- /pages/buttons/5.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/5.tsx -------------------------------------------------------------------------------- /pages/buttons/50.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/50.tsx -------------------------------------------------------------------------------- /pages/buttons/51.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/51.tsx -------------------------------------------------------------------------------- /pages/buttons/52.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/52.tsx -------------------------------------------------------------------------------- /pages/buttons/53.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/53.tsx -------------------------------------------------------------------------------- /pages/buttons/54.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/54.tsx -------------------------------------------------------------------------------- /pages/buttons/55.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/55.tsx -------------------------------------------------------------------------------- /pages/buttons/56.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/56.tsx -------------------------------------------------------------------------------- /pages/buttons/57.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/57.tsx -------------------------------------------------------------------------------- /pages/buttons/58.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/58.tsx -------------------------------------------------------------------------------- /pages/buttons/59.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/59.tsx -------------------------------------------------------------------------------- /pages/buttons/6.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/6.tsx -------------------------------------------------------------------------------- /pages/buttons/60.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/60.tsx -------------------------------------------------------------------------------- /pages/buttons/61.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/61.tsx -------------------------------------------------------------------------------- /pages/buttons/62.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/62.tsx -------------------------------------------------------------------------------- /pages/buttons/7.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/7.tsx -------------------------------------------------------------------------------- /pages/buttons/8.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/8.tsx -------------------------------------------------------------------------------- /pages/buttons/9.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/buttons/9.tsx -------------------------------------------------------------------------------- /pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/pages/index.tsx -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/ads.txt: -------------------------------------------------------------------------------- 1 | google.com, pub-6099445439299322, DIRECT, f08c47fec0942fa0 -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /scripts/generate-sitemap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/scripts/generate-sitemap.js -------------------------------------------------------------------------------- /styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/styles/globals.css -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/tsconfig.json -------------------------------------------------------------------------------- /utils/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guivr/cssbuttons/HEAD/utils/analytics.js --------------------------------------------------------------------------------