├── .DS_Store ├── .editorconfig ├── .gitignore ├── .nvmrc ├── .prettierrc.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── GoogleCloudArchitecture.png ├── LICENSE ├── README.md ├── app ├── (studio) │ ├── edit │ │ └── page.tsx │ ├── generate │ │ └── page.tsx │ ├── layout.tsx │ └── library │ │ └── page.tsx ├── api │ ├── cloud-storage │ │ └── action.tsx │ ├── edit-utils.tsx │ ├── export-utils.tsx │ ├── firestore │ │ └── action.ts │ ├── gemini │ │ └── action.tsx │ ├── generate-image-utils.tsx │ ├── generate-video-utils.tsx │ ├── google-auth │ │ └── route.ts │ ├── imagen │ │ └── action.tsx │ ├── veo │ │ └── action.tsx │ └── vertex-seg │ │ └── action.tsx ├── context │ └── app-context.tsx ├── globals.css ├── layout.tsx ├── page.tsx ├── routes.tsx ├── theme.ts └── ui │ ├── edit-components │ ├── EditForm.tsx │ ├── EditImageDropzone.tsx │ ├── EditModeMenu.tsx │ ├── EditSettings.tsx │ ├── ManualMaskSelection.tsx │ ├── MaskCanvas.tsx │ ├── OutpaintPreview.tsx │ ├── OutpaintingMaskSettings.tsx │ ├── SetMaskDialog.tsx │ └── UpscaleDialog.tsx │ ├── generate-components │ ├── GenerateForm.tsx │ ├── GenerateSettings.tsx │ ├── ImageDropzone.tsx │ ├── ImageToPromptModal.tsx │ ├── ReferenceBox.tsx │ ├── ReferencePicker.tsx │ └── VideoInterpolBox.tsx │ ├── library-components │ ├── ExploreDialog.tsx │ ├── LibraryFiltering.tsx │ └── LibraryMediasDisplay.tsx │ ├── transverse-components │ ├── DownloadDialog.tsx │ ├── ExportAlerts.tsx │ ├── ExportDialog.tsx │ ├── ImagenOutputImagesDisplay.tsx │ ├── SideNavigation.tsx │ └── VeoOutputVideosDisplay.tsx │ └── ux-components │ ├── Accordion-SX.tsx │ ├── AudioButton.tsx │ ├── BlurImage.ts │ ├── Button-SX.tsx │ ├── FormInputNumberSmall.tsx │ ├── GeminiButton.tsx │ ├── GoogleSignInButton.module.css │ ├── GoogleSignInButton.tsx │ ├── InputChipGroup.tsx │ ├── InputChipGroupMultiple.tsx │ ├── InputDropdown.tsx │ ├── InputDropdownMultiple.tsx │ ├── InputInterface.tsx │ ├── InputRadioButton.tsx │ ├── InputSlider.tsx │ ├── InputText.tsx │ ├── InputTextLine.tsx │ ├── InputTextSmall.tsx │ └── Tooltip.tsx ├── cloudbuild.yaml ├── export-fields-options.json ├── generate-third-party.js ├── library-update-script.md ├── next.config.mjs ├── package.json ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── ImgStudioLogo.svg ├── ImgStudioLogoReversedMini.svg ├── cloudicon.svg └── favicon.ico ├── third_party ├── @emotion │ ├── cache │ │ ├── LICENSE │ │ └── METADATA │ ├── react │ │ ├── LICENSE │ │ └── METADATA │ └── styled │ │ ├── LICENSE │ │ └── METADATA ├── @fontsource │ └── roboto │ │ ├── LICENSE │ │ └── METADATA ├── @google-cloud │ ├── firestore │ │ ├── LICENSE │ │ └── METADATA │ ├── iap │ │ ├── LICENSE │ │ └── METADATA │ ├── storage │ │ ├── LICENSE │ │ └── METADATA │ └── vertexai │ │ ├── LICENSE │ │ └── METADATA ├── @mui │ ├── icons-material │ │ ├── LICENSE │ │ └── METADATA │ ├── material-nextjs │ │ ├── LICENSE │ │ └── METADATA │ └── material │ │ ├── LICENSE │ │ └── METADATA ├── @tailwindcss │ └── forms │ │ ├── LICENSE │ │ └── METADATA ├── autoprefixer │ ├── LICENSE │ └── METADATA ├── fabric │ ├── LICENSE │ └── METADATA ├── fs │ ├── LICENSE │ └── METADATA ├── google-auth-library │ ├── LICENSE │ └── METADATA ├── install │ ├── LICENSE │ └── METADATA ├── next-auth │ ├── LICENSE │ └── METADATA ├── npm │ ├── LICENSE │ └── METADATA ├── react-dom │ ├── LICENSE │ └── METADATA ├── react-dropzone │ ├── LICENSE │ └── METADATA ├── react-hook-form │ ├── LICENSE │ └── METADATA ├── react-mask-editor │ ├── LICENSE │ └── METADATA ├── react-sketch-canvas │ ├── LICENSE │ └── METADATA ├── react │ ├── LICENSE │ └── METADATA ├── sharp │ ├── LICENSE │ └── METADATA └── tailwindcss │ ├── LICENSE │ └── METADATA ├── tsconfig.json └── webpack.config.js /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/.DS_Store -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 20.12.0 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/Dockerfile -------------------------------------------------------------------------------- /GoogleCloudArchitecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/GoogleCloudArchitecture.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/README.md -------------------------------------------------------------------------------- /app/(studio)/edit/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/(studio)/edit/page.tsx -------------------------------------------------------------------------------- /app/(studio)/generate/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/(studio)/generate/page.tsx -------------------------------------------------------------------------------- /app/(studio)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/(studio)/layout.tsx -------------------------------------------------------------------------------- /app/(studio)/library/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/(studio)/library/page.tsx -------------------------------------------------------------------------------- /app/api/cloud-storage/action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/api/cloud-storage/action.tsx -------------------------------------------------------------------------------- /app/api/edit-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/api/edit-utils.tsx -------------------------------------------------------------------------------- /app/api/export-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/api/export-utils.tsx -------------------------------------------------------------------------------- /app/api/firestore/action.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/api/firestore/action.ts -------------------------------------------------------------------------------- /app/api/gemini/action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/api/gemini/action.tsx -------------------------------------------------------------------------------- /app/api/generate-image-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/api/generate-image-utils.tsx -------------------------------------------------------------------------------- /app/api/generate-video-utils.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/api/generate-video-utils.tsx -------------------------------------------------------------------------------- /app/api/google-auth/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/api/google-auth/route.ts -------------------------------------------------------------------------------- /app/api/imagen/action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/api/imagen/action.tsx -------------------------------------------------------------------------------- /app/api/veo/action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/api/veo/action.tsx -------------------------------------------------------------------------------- /app/api/vertex-seg/action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/api/vertex-seg/action.tsx -------------------------------------------------------------------------------- /app/context/app-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/context/app-context.tsx -------------------------------------------------------------------------------- /app/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/globals.css -------------------------------------------------------------------------------- /app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/layout.tsx -------------------------------------------------------------------------------- /app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/page.tsx -------------------------------------------------------------------------------- /app/routes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/routes.tsx -------------------------------------------------------------------------------- /app/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/theme.ts -------------------------------------------------------------------------------- /app/ui/edit-components/EditForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/edit-components/EditForm.tsx -------------------------------------------------------------------------------- /app/ui/edit-components/EditImageDropzone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/edit-components/EditImageDropzone.tsx -------------------------------------------------------------------------------- /app/ui/edit-components/EditModeMenu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/edit-components/EditModeMenu.tsx -------------------------------------------------------------------------------- /app/ui/edit-components/EditSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/edit-components/EditSettings.tsx -------------------------------------------------------------------------------- /app/ui/edit-components/ManualMaskSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/edit-components/ManualMaskSelection.tsx -------------------------------------------------------------------------------- /app/ui/edit-components/MaskCanvas.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/edit-components/MaskCanvas.tsx -------------------------------------------------------------------------------- /app/ui/edit-components/OutpaintPreview.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/edit-components/OutpaintPreview.tsx -------------------------------------------------------------------------------- /app/ui/edit-components/OutpaintingMaskSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/edit-components/OutpaintingMaskSettings.tsx -------------------------------------------------------------------------------- /app/ui/edit-components/SetMaskDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/edit-components/SetMaskDialog.tsx -------------------------------------------------------------------------------- /app/ui/edit-components/UpscaleDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/edit-components/UpscaleDialog.tsx -------------------------------------------------------------------------------- /app/ui/generate-components/GenerateForm.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/generate-components/GenerateForm.tsx -------------------------------------------------------------------------------- /app/ui/generate-components/GenerateSettings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/generate-components/GenerateSettings.tsx -------------------------------------------------------------------------------- /app/ui/generate-components/ImageDropzone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/generate-components/ImageDropzone.tsx -------------------------------------------------------------------------------- /app/ui/generate-components/ImageToPromptModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/generate-components/ImageToPromptModal.tsx -------------------------------------------------------------------------------- /app/ui/generate-components/ReferenceBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/generate-components/ReferenceBox.tsx -------------------------------------------------------------------------------- /app/ui/generate-components/ReferencePicker.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/generate-components/ReferencePicker.tsx -------------------------------------------------------------------------------- /app/ui/generate-components/VideoInterpolBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/generate-components/VideoInterpolBox.tsx -------------------------------------------------------------------------------- /app/ui/library-components/ExploreDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/library-components/ExploreDialog.tsx -------------------------------------------------------------------------------- /app/ui/library-components/LibraryFiltering.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/library-components/LibraryFiltering.tsx -------------------------------------------------------------------------------- /app/ui/library-components/LibraryMediasDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/library-components/LibraryMediasDisplay.tsx -------------------------------------------------------------------------------- /app/ui/transverse-components/DownloadDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/transverse-components/DownloadDialog.tsx -------------------------------------------------------------------------------- /app/ui/transverse-components/ExportAlerts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/transverse-components/ExportAlerts.tsx -------------------------------------------------------------------------------- /app/ui/transverse-components/ExportDialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/transverse-components/ExportDialog.tsx -------------------------------------------------------------------------------- /app/ui/transverse-components/ImagenOutputImagesDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/transverse-components/ImagenOutputImagesDisplay.tsx -------------------------------------------------------------------------------- /app/ui/transverse-components/SideNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/transverse-components/SideNavigation.tsx -------------------------------------------------------------------------------- /app/ui/transverse-components/VeoOutputVideosDisplay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/transverse-components/VeoOutputVideosDisplay.tsx -------------------------------------------------------------------------------- /app/ui/ux-components/Accordion-SX.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/ux-components/Accordion-SX.tsx -------------------------------------------------------------------------------- /app/ui/ux-components/AudioButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/ux-components/AudioButton.tsx -------------------------------------------------------------------------------- /app/ui/ux-components/BlurImage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/ux-components/BlurImage.ts -------------------------------------------------------------------------------- /app/ui/ux-components/Button-SX.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/ux-components/Button-SX.tsx -------------------------------------------------------------------------------- /app/ui/ux-components/FormInputNumberSmall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/ux-components/FormInputNumberSmall.tsx -------------------------------------------------------------------------------- /app/ui/ux-components/GeminiButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/ux-components/GeminiButton.tsx -------------------------------------------------------------------------------- /app/ui/ux-components/GoogleSignInButton.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/ux-components/GoogleSignInButton.module.css -------------------------------------------------------------------------------- /app/ui/ux-components/GoogleSignInButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/ux-components/GoogleSignInButton.tsx -------------------------------------------------------------------------------- /app/ui/ux-components/InputChipGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/ux-components/InputChipGroup.tsx -------------------------------------------------------------------------------- /app/ui/ux-components/InputChipGroupMultiple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/ux-components/InputChipGroupMultiple.tsx -------------------------------------------------------------------------------- /app/ui/ux-components/InputDropdown.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/ux-components/InputDropdown.tsx -------------------------------------------------------------------------------- /app/ui/ux-components/InputDropdownMultiple.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/ux-components/InputDropdownMultiple.tsx -------------------------------------------------------------------------------- /app/ui/ux-components/InputInterface.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/ux-components/InputInterface.tsx -------------------------------------------------------------------------------- /app/ui/ux-components/InputRadioButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/ux-components/InputRadioButton.tsx -------------------------------------------------------------------------------- /app/ui/ux-components/InputSlider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/ux-components/InputSlider.tsx -------------------------------------------------------------------------------- /app/ui/ux-components/InputText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/ux-components/InputText.tsx -------------------------------------------------------------------------------- /app/ui/ux-components/InputTextLine.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/ux-components/InputTextLine.tsx -------------------------------------------------------------------------------- /app/ui/ux-components/InputTextSmall.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/ux-components/InputTextSmall.tsx -------------------------------------------------------------------------------- /app/ui/ux-components/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/app/ui/ux-components/Tooltip.tsx -------------------------------------------------------------------------------- /cloudbuild.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/cloudbuild.yaml -------------------------------------------------------------------------------- /export-fields-options.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/export-fields-options.json -------------------------------------------------------------------------------- /generate-third-party.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/generate-third-party.js -------------------------------------------------------------------------------- /library-update-script.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/library-update-script.md -------------------------------------------------------------------------------- /next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/next.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/postcss.config.js -------------------------------------------------------------------------------- /public/ImgStudioLogo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/public/ImgStudioLogo.svg -------------------------------------------------------------------------------- /public/ImgStudioLogoReversedMini.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/public/ImgStudioLogoReversedMini.svg -------------------------------------------------------------------------------- /public/cloudicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/public/cloudicon.svg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /third_party/@emotion/cache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@emotion/cache/LICENSE -------------------------------------------------------------------------------- /third_party/@emotion/cache/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@emotion/cache/METADATA -------------------------------------------------------------------------------- /third_party/@emotion/react/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@emotion/react/LICENSE -------------------------------------------------------------------------------- /third_party/@emotion/react/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@emotion/react/METADATA -------------------------------------------------------------------------------- /third_party/@emotion/styled/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@emotion/styled/LICENSE -------------------------------------------------------------------------------- /third_party/@emotion/styled/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@emotion/styled/METADATA -------------------------------------------------------------------------------- /third_party/@fontsource/roboto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@fontsource/roboto/LICENSE -------------------------------------------------------------------------------- /third_party/@fontsource/roboto/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@fontsource/roboto/METADATA -------------------------------------------------------------------------------- /third_party/@google-cloud/firestore/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@google-cloud/firestore/LICENSE -------------------------------------------------------------------------------- /third_party/@google-cloud/firestore/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@google-cloud/firestore/METADATA -------------------------------------------------------------------------------- /third_party/@google-cloud/iap/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@google-cloud/iap/LICENSE -------------------------------------------------------------------------------- /third_party/@google-cloud/iap/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@google-cloud/iap/METADATA -------------------------------------------------------------------------------- /third_party/@google-cloud/storage/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@google-cloud/storage/LICENSE -------------------------------------------------------------------------------- /third_party/@google-cloud/storage/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@google-cloud/storage/METADATA -------------------------------------------------------------------------------- /third_party/@google-cloud/vertexai/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@google-cloud/vertexai/LICENSE -------------------------------------------------------------------------------- /third_party/@google-cloud/vertexai/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@google-cloud/vertexai/METADATA -------------------------------------------------------------------------------- /third_party/@mui/icons-material/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@mui/icons-material/LICENSE -------------------------------------------------------------------------------- /third_party/@mui/icons-material/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@mui/icons-material/METADATA -------------------------------------------------------------------------------- /third_party/@mui/material-nextjs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@mui/material-nextjs/LICENSE -------------------------------------------------------------------------------- /third_party/@mui/material-nextjs/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@mui/material-nextjs/METADATA -------------------------------------------------------------------------------- /third_party/@mui/material/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@mui/material/LICENSE -------------------------------------------------------------------------------- /third_party/@mui/material/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@mui/material/METADATA -------------------------------------------------------------------------------- /third_party/@tailwindcss/forms/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@tailwindcss/forms/LICENSE -------------------------------------------------------------------------------- /third_party/@tailwindcss/forms/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/@tailwindcss/forms/METADATA -------------------------------------------------------------------------------- /third_party/autoprefixer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/autoprefixer/LICENSE -------------------------------------------------------------------------------- /third_party/autoprefixer/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/autoprefixer/METADATA -------------------------------------------------------------------------------- /third_party/fabric/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/fabric/LICENSE -------------------------------------------------------------------------------- /third_party/fabric/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/fabric/METADATA -------------------------------------------------------------------------------- /third_party/fs/LICENSE: -------------------------------------------------------------------------------- 1 | ISC - see package.json -------------------------------------------------------------------------------- /third_party/fs/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/fs/METADATA -------------------------------------------------------------------------------- /third_party/google-auth-library/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/google-auth-library/LICENSE -------------------------------------------------------------------------------- /third_party/google-auth-library/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/google-auth-library/METADATA -------------------------------------------------------------------------------- /third_party/install/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/install/LICENSE -------------------------------------------------------------------------------- /third_party/install/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/install/METADATA -------------------------------------------------------------------------------- /third_party/next-auth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/next-auth/LICENSE -------------------------------------------------------------------------------- /third_party/next-auth/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/next-auth/METADATA -------------------------------------------------------------------------------- /third_party/npm/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/npm/LICENSE -------------------------------------------------------------------------------- /third_party/npm/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/npm/METADATA -------------------------------------------------------------------------------- /third_party/react-dom/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/react-dom/LICENSE -------------------------------------------------------------------------------- /third_party/react-dom/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/react-dom/METADATA -------------------------------------------------------------------------------- /third_party/react-dropzone/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/react-dropzone/LICENSE -------------------------------------------------------------------------------- /third_party/react-dropzone/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/react-dropzone/METADATA -------------------------------------------------------------------------------- /third_party/react-hook-form/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/react-hook-form/LICENSE -------------------------------------------------------------------------------- /third_party/react-hook-form/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/react-hook-form/METADATA -------------------------------------------------------------------------------- /third_party/react-mask-editor/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/react-mask-editor/LICENSE -------------------------------------------------------------------------------- /third_party/react-mask-editor/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/react-mask-editor/METADATA -------------------------------------------------------------------------------- /third_party/react-sketch-canvas/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/react-sketch-canvas/LICENSE -------------------------------------------------------------------------------- /third_party/react-sketch-canvas/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/react-sketch-canvas/METADATA -------------------------------------------------------------------------------- /third_party/react/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/react/LICENSE -------------------------------------------------------------------------------- /third_party/react/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/react/METADATA -------------------------------------------------------------------------------- /third_party/sharp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/sharp/LICENSE -------------------------------------------------------------------------------- /third_party/sharp/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/sharp/METADATA -------------------------------------------------------------------------------- /third_party/tailwindcss/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/tailwindcss/LICENSE -------------------------------------------------------------------------------- /third_party/tailwindcss/METADATA: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/third_party/tailwindcss/METADATA -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aduboue/img-studio/HEAD/webpack.config.js --------------------------------------------------------------------------------