├── .eslintrc.json ├── .github └── image.png ├── public └── favicon.ico ├── postcss.config.js ├── next.config.js ├── components ├── Label.tsx ├── Generation.ts ├── AppBar.tsx ├── Editor.tsx ├── Nodes │ ├── RandomNumber.tsx │ ├── Concat.tsx │ ├── RegexReplace.tsx │ ├── LoadImage.tsx │ ├── Interrogate.tsx │ ├── Transformer.tsx │ ├── Image.tsx │ └── index.tsx ├── Bar.tsx └── Node.tsx ├── pages ├── _app.tsx ├── _document.tsx └── index.tsx ├── tailwind.config.js ├── .gitignore ├── tsconfig.json ├── README.md ├── package.json └── styles └── globals.css /.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "next/core-web-vitals" 3 | } 4 | -------------------------------------------------------------------------------- /.github/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAJdev/node-diffusion/HEAD/.github/image.png -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KAJdev/node-diffusion/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /postcss.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | plugins: { 3 | tailwindcss: {}, 4 | autoprefixer: {}, 5 | }, 6 | } 7 | -------------------------------------------------------------------------------- /next.config.js: -------------------------------------------------------------------------------- 1 | /** @type {import('next').NextConfig} */ 2 | const nextConfig = { 3 | reactStrictMode: true, 4 | } 5 | 6 | module.exports = nextConfig 7 | -------------------------------------------------------------------------------- /components/Label.tsx: -------------------------------------------------------------------------------- 1 | export function Label({ children }: { children?: React.ReactNode }) { 2 | return ( 3 |