├── .gitignore ├── .idea ├── .gitignore ├── codeStyles │ └── codeStyleConfig.xml ├── demo.coolshapes.iml ├── inspectionProfiles │ └── Project_Default.xml ├── modules.xml └── vcs.xml ├── LICENSE.md ├── README.md ├── jsconfig.json ├── next.config.mjs ├── package.json ├── public ├── arrow-bottom.svg ├── arrow-down.svg ├── arrow-up.svg ├── arrow.svg ├── coolshape-logo.svg ├── copy.svg ├── next.svg ├── random.svg ├── uilogo │ └── shuffle.svg └── vercel.svg ├── src ├── app │ ├── (main) │ │ ├── layout.jsx │ │ └── page.jsx │ ├── favicon.ico │ ├── layout.jsx │ └── not-found.js ├── components │ ├── analytics.js │ ├── editor.jsx │ ├── footer.jsx │ ├── next-seo.config.js │ ├── ui │ │ ├── button.jsx │ │ ├── common.jsx │ │ ├── dropdown.jsx │ │ ├── input.jsx │ │ └── toggle.jsx │ └── util.js └── styles │ ├── globals.scss │ └── styled-registry.jsx └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/demo.coolshapes.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/.idea/demo.coolshapes.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/README.md -------------------------------------------------------------------------------- /jsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/jsconfig.json -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/package.json -------------------------------------------------------------------------------- /public/arrow-bottom.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/public/arrow-bottom.svg -------------------------------------------------------------------------------- /public/arrow-down.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/public/arrow-down.svg -------------------------------------------------------------------------------- /public/arrow-up.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/public/arrow-up.svg -------------------------------------------------------------------------------- /public/arrow.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/public/arrow.svg -------------------------------------------------------------------------------- /public/coolshape-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/public/coolshape-logo.svg -------------------------------------------------------------------------------- /public/copy.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/public/copy.svg -------------------------------------------------------------------------------- /public/next.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/public/next.svg -------------------------------------------------------------------------------- /public/random.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/public/random.svg -------------------------------------------------------------------------------- /public/uilogo/shuffle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/public/uilogo/shuffle.svg -------------------------------------------------------------------------------- /public/vercel.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/public/vercel.svg -------------------------------------------------------------------------------- /src/app/(main)/layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/src/app/(main)/layout.jsx -------------------------------------------------------------------------------- /src/app/(main)/page.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/src/app/(main)/page.jsx -------------------------------------------------------------------------------- /src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/src/app/favicon.ico -------------------------------------------------------------------------------- /src/app/layout.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/src/app/layout.jsx -------------------------------------------------------------------------------- /src/app/not-found.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/src/app/not-found.js -------------------------------------------------------------------------------- /src/components/analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/src/components/analytics.js -------------------------------------------------------------------------------- /src/components/editor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/src/components/editor.jsx -------------------------------------------------------------------------------- /src/components/footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/src/components/footer.jsx -------------------------------------------------------------------------------- /src/components/next-seo.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/src/components/next-seo.config.js -------------------------------------------------------------------------------- /src/components/ui/button.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/src/components/ui/button.jsx -------------------------------------------------------------------------------- /src/components/ui/common.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/src/components/ui/common.jsx -------------------------------------------------------------------------------- /src/components/ui/dropdown.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/src/components/ui/dropdown.jsx -------------------------------------------------------------------------------- /src/components/ui/input.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/src/components/ui/input.jsx -------------------------------------------------------------------------------- /src/components/ui/toggle.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/src/components/ui/toggle.jsx -------------------------------------------------------------------------------- /src/components/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/src/components/util.js -------------------------------------------------------------------------------- /src/styles/globals.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/src/styles/globals.scss -------------------------------------------------------------------------------- /src/styles/styled-registry.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/src/styles/styled-registry.jsx -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/realvjy/coolshapes-demo/HEAD/yarn.lock --------------------------------------------------------------------------------