├── .gitignore ├── README.md ├── client ├── .eslintrc.cjs ├── index.html ├── package-lock.json ├── package.json ├── postcss.config.js ├── public │ ├── catLogo.png │ ├── logo.png │ ├── low_poly_bookdiary.glb │ ├── mug.glb │ ├── react.png │ ├── shirt_baked.glb │ ├── texture.jpg │ ├── tshirt │ │ └── source │ │ │ └── tshirt.glb │ └── vite.svg ├── src │ ├── App.jsx │ ├── assets │ │ ├── ai.png │ │ ├── diary.png │ │ ├── download.png │ │ ├── file.png │ │ ├── index.js │ │ ├── logo-tshirt.png │ │ ├── logo.png │ │ ├── mouse.png │ │ ├── mug.png │ │ ├── polo.png │ │ ├── stylish-tshirt.png │ │ └── swatch.png │ ├── canvas │ │ ├── Backdrop.jsx │ │ ├── CameraRig.jsx │ │ ├── Diary.jsx │ │ ├── Mug.jsx │ │ ├── Shirt.jsx │ │ ├── Tshirt.jsx │ │ └── index.jsx │ ├── components │ │ ├── AIPicker.jsx │ │ ├── ColorPicker.jsx │ │ ├── CustomButton.jsx │ │ ├── FilePicker.jsx │ │ ├── MouseMovement.jsx │ │ ├── Tab.jsx │ │ └── index.js │ ├── config │ │ ├── config.js │ │ ├── constants.js │ │ ├── helpers.js │ │ └── motion.js │ ├── index.css │ ├── main.jsx │ ├── pages │ │ ├── Customizer.jsx │ │ └── Home.jsx │ └── store │ │ └── index.js ├── tailwind.config.js └── vite.config.js ├── images ├── 1.JPG ├── 2.JPG ├── 3.JPG ├── 4.JPG └── 5.JPG └── server ├── index.js ├── package-lock.json ├── package.json └── routes └── stablediffusion.routes.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/README.md -------------------------------------------------------------------------------- /client/.eslintrc.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/.eslintrc.cjs -------------------------------------------------------------------------------- /client/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/index.html -------------------------------------------------------------------------------- /client/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/package-lock.json -------------------------------------------------------------------------------- /client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/package.json -------------------------------------------------------------------------------- /client/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/postcss.config.js -------------------------------------------------------------------------------- /client/public/catLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/public/catLogo.png -------------------------------------------------------------------------------- /client/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/public/logo.png -------------------------------------------------------------------------------- /client/public/low_poly_bookdiary.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/public/low_poly_bookdiary.glb -------------------------------------------------------------------------------- /client/public/mug.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/public/mug.glb -------------------------------------------------------------------------------- /client/public/react.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/public/react.png -------------------------------------------------------------------------------- /client/public/shirt_baked.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/public/shirt_baked.glb -------------------------------------------------------------------------------- /client/public/texture.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/public/texture.jpg -------------------------------------------------------------------------------- /client/public/tshirt/source/tshirt.glb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/public/tshirt/source/tshirt.glb -------------------------------------------------------------------------------- /client/public/vite.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/public/vite.svg -------------------------------------------------------------------------------- /client/src/App.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/App.jsx -------------------------------------------------------------------------------- /client/src/assets/ai.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/assets/ai.png -------------------------------------------------------------------------------- /client/src/assets/diary.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/assets/diary.png -------------------------------------------------------------------------------- /client/src/assets/download.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/assets/download.png -------------------------------------------------------------------------------- /client/src/assets/file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/assets/file.png -------------------------------------------------------------------------------- /client/src/assets/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/assets/index.js -------------------------------------------------------------------------------- /client/src/assets/logo-tshirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/assets/logo-tshirt.png -------------------------------------------------------------------------------- /client/src/assets/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/assets/logo.png -------------------------------------------------------------------------------- /client/src/assets/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/assets/mouse.png -------------------------------------------------------------------------------- /client/src/assets/mug.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/assets/mug.png -------------------------------------------------------------------------------- /client/src/assets/polo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/assets/polo.png -------------------------------------------------------------------------------- /client/src/assets/stylish-tshirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/assets/stylish-tshirt.png -------------------------------------------------------------------------------- /client/src/assets/swatch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/assets/swatch.png -------------------------------------------------------------------------------- /client/src/canvas/Backdrop.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/canvas/Backdrop.jsx -------------------------------------------------------------------------------- /client/src/canvas/CameraRig.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/canvas/CameraRig.jsx -------------------------------------------------------------------------------- /client/src/canvas/Diary.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/canvas/Diary.jsx -------------------------------------------------------------------------------- /client/src/canvas/Mug.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/canvas/Mug.jsx -------------------------------------------------------------------------------- /client/src/canvas/Shirt.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/canvas/Shirt.jsx -------------------------------------------------------------------------------- /client/src/canvas/Tshirt.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/canvas/Tshirt.jsx -------------------------------------------------------------------------------- /client/src/canvas/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/canvas/index.jsx -------------------------------------------------------------------------------- /client/src/components/AIPicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/components/AIPicker.jsx -------------------------------------------------------------------------------- /client/src/components/ColorPicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/components/ColorPicker.jsx -------------------------------------------------------------------------------- /client/src/components/CustomButton.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/components/CustomButton.jsx -------------------------------------------------------------------------------- /client/src/components/FilePicker.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/components/FilePicker.jsx -------------------------------------------------------------------------------- /client/src/components/MouseMovement.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/components/MouseMovement.jsx -------------------------------------------------------------------------------- /client/src/components/Tab.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/components/Tab.jsx -------------------------------------------------------------------------------- /client/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/components/index.js -------------------------------------------------------------------------------- /client/src/config/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/config/config.js -------------------------------------------------------------------------------- /client/src/config/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/config/constants.js -------------------------------------------------------------------------------- /client/src/config/helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/config/helpers.js -------------------------------------------------------------------------------- /client/src/config/motion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/config/motion.js -------------------------------------------------------------------------------- /client/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/index.css -------------------------------------------------------------------------------- /client/src/main.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/main.jsx -------------------------------------------------------------------------------- /client/src/pages/Customizer.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/pages/Customizer.jsx -------------------------------------------------------------------------------- /client/src/pages/Home.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/pages/Home.jsx -------------------------------------------------------------------------------- /client/src/store/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/src/store/index.js -------------------------------------------------------------------------------- /client/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/tailwind.config.js -------------------------------------------------------------------------------- /client/vite.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/client/vite.config.js -------------------------------------------------------------------------------- /images/1.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/images/1.JPG -------------------------------------------------------------------------------- /images/2.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/images/2.JPG -------------------------------------------------------------------------------- /images/3.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/images/3.JPG -------------------------------------------------------------------------------- /images/4.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/images/4.JPG -------------------------------------------------------------------------------- /images/5.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/images/5.JPG -------------------------------------------------------------------------------- /server/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/server/index.js -------------------------------------------------------------------------------- /server/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/server/package-lock.json -------------------------------------------------------------------------------- /server/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/server/package.json -------------------------------------------------------------------------------- /server/routes/stablediffusion.routes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arshad-syed18/PixelThreads-3DProductStore/HEAD/server/routes/stablediffusion.routes.js --------------------------------------------------------------------------------