├── .env.example ├── .eslintrc.cjs ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── documentation.yml │ └── feature_request.yml ├── pull_request_template.md └── workflows │ ├── codeql.yml │ └── greetings.yaml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LEARN.md ├── LICENSE ├── README.md ├── index.html ├── package.json ├── postcss.config.js ├── src ├── App.jsx ├── assets │ └── images │ │ ├── GMail.webp │ │ ├── Gssoc Label.png │ │ ├── Social Summer of Code.jpeg │ │ ├── X.png │ │ ├── chatbot.jpg │ │ ├── circle.png │ │ ├── circle.svg │ │ ├── github.png │ │ ├── line.svg │ │ ├── linkedin.jpg │ │ ├── logo.png │ │ ├── logoText.png │ │ ├── readmeLogo.png │ │ ├── rectangle.svg │ │ ├── triangle.svg │ │ └── webLogo.png ├── components │ ├── BgColorSidePanel.jsx │ ├── Chatbot │ │ └── Chatbot.jsx │ ├── Contact │ │ └── Contact.jsx │ ├── CursorTrailEffect.jsx │ ├── DrawingShapes.jsx │ ├── Footer.jsx │ ├── FooterLink.jsx │ ├── Header.jsx │ ├── Home.jsx │ ├── Menu.jsx │ ├── Preloader │ │ └── Preloader.jsx │ ├── RateUs.jsx │ └── Team │ │ └── Contributor.jsx ├── index.css ├── main.jsx ├── useGoogleDrive.js └── utils │ ├── canvas.js │ ├── futureScope.js │ ├── helpers.js │ ├── manageCookies.js │ └── preloaderAnimation.json ├── tailwind.config.js └── vite.config.js /.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/.env.example -------------------------------------------------------------------------------- /.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/.eslintrc.cjs -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/documentation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/.github/ISSUE_TEMPLATE/documentation.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/.github/ISSUE_TEMPLATE/feature_request.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/codeql.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/.github/workflows/codeql.yml -------------------------------------------------------------------------------- /.github/workflows/greetings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/.github/workflows/greetings.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/Dockerfile -------------------------------------------------------------------------------- /LEARN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/LEARN.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/package.json -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/postcss.config.js -------------------------------------------------------------------------------- /src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/App.jsx -------------------------------------------------------------------------------- /src/assets/images/GMail.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/assets/images/GMail.webp -------------------------------------------------------------------------------- /src/assets/images/Gssoc Label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/assets/images/Gssoc Label.png -------------------------------------------------------------------------------- /src/assets/images/Social Summer of Code.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/assets/images/Social Summer of Code.jpeg -------------------------------------------------------------------------------- /src/assets/images/X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/assets/images/X.png -------------------------------------------------------------------------------- /src/assets/images/chatbot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/assets/images/chatbot.jpg -------------------------------------------------------------------------------- /src/assets/images/circle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/assets/images/circle.png -------------------------------------------------------------------------------- /src/assets/images/circle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/assets/images/circle.svg -------------------------------------------------------------------------------- /src/assets/images/github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/assets/images/github.png -------------------------------------------------------------------------------- /src/assets/images/line.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/assets/images/line.svg -------------------------------------------------------------------------------- /src/assets/images/linkedin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/assets/images/linkedin.jpg -------------------------------------------------------------------------------- /src/assets/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/assets/images/logo.png -------------------------------------------------------------------------------- /src/assets/images/logoText.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/assets/images/logoText.png -------------------------------------------------------------------------------- /src/assets/images/readmeLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/assets/images/readmeLogo.png -------------------------------------------------------------------------------- /src/assets/images/rectangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/assets/images/rectangle.svg -------------------------------------------------------------------------------- /src/assets/images/triangle.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/assets/images/triangle.svg -------------------------------------------------------------------------------- /src/assets/images/webLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/assets/images/webLogo.png -------------------------------------------------------------------------------- /src/components/BgColorSidePanel.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/components/BgColorSidePanel.jsx -------------------------------------------------------------------------------- /src/components/Chatbot/Chatbot.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/components/Chatbot/Chatbot.jsx -------------------------------------------------------------------------------- /src/components/Contact/Contact.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/components/Contact/Contact.jsx -------------------------------------------------------------------------------- /src/components/CursorTrailEffect.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/components/CursorTrailEffect.jsx -------------------------------------------------------------------------------- /src/components/DrawingShapes.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/components/DrawingShapes.jsx -------------------------------------------------------------------------------- /src/components/Footer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/components/Footer.jsx -------------------------------------------------------------------------------- /src/components/FooterLink.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/components/FooterLink.jsx -------------------------------------------------------------------------------- /src/components/Header.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/components/Header.jsx -------------------------------------------------------------------------------- /src/components/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/components/Home.jsx -------------------------------------------------------------------------------- /src/components/Menu.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/components/Menu.jsx -------------------------------------------------------------------------------- /src/components/Preloader/Preloader.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/components/Preloader/Preloader.jsx -------------------------------------------------------------------------------- /src/components/RateUs.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/components/RateUs.jsx -------------------------------------------------------------------------------- /src/components/Team/Contributor.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/components/Team/Contributor.jsx -------------------------------------------------------------------------------- /src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/index.css -------------------------------------------------------------------------------- /src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/main.jsx -------------------------------------------------------------------------------- /src/useGoogleDrive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/useGoogleDrive.js -------------------------------------------------------------------------------- /src/utils/canvas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/utils/canvas.js -------------------------------------------------------------------------------- /src/utils/futureScope.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/utils/futureScope.js -------------------------------------------------------------------------------- /src/utils/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/utils/helpers.js -------------------------------------------------------------------------------- /src/utils/manageCookies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/utils/manageCookies.js -------------------------------------------------------------------------------- /src/utils/preloaderAnimation.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/src/utils/preloaderAnimation.json -------------------------------------------------------------------------------- /tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/tailwind.config.js -------------------------------------------------------------------------------- /vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/singodiyashubham87/draw-it-out/HEAD/vite.config.js --------------------------------------------------------------------------------