frontend richtig schick gemacht und backend geordnet. ComfyUI Prompt zum Seeder hinzugefügt.

This commit is contained in:
2025-12-02 21:24:18 +01:00
parent 7b7a12ed27
commit 908b1dcdff
17 changed files with 473 additions and 260 deletions

View File

@@ -9,10 +9,38 @@ import { ZiggyVue } from '../../vendor/tightenco/ziggy';
/* Font Awesome imports */
import { library } from '@fortawesome/fontawesome-svg-core';
import { FontAwesomeIcon } from '@fortawesome/vue-fontawesome';
import { faPrint, faMagicWandSparkles, faXmark } from '@fortawesome/free-solid-svg-icons';
import {
faPrint,
faMagicWandSparkles,
faXmark,
faArrowLeft,
faArrowRight,
faSun,
faMoon,
faArrowsRotate,
faMinus,
faPlus,
faBars,
faChevronDown,
faDownload,
} from '@fortawesome/free-solid-svg-icons';
// Add icons to the library
library.add(faPrint, faMagicWandSparkles, faXmark);
library.add(
faPrint,
faMagicWandSparkles,
faXmark,
faArrowLeft,
faArrowRight,
faSun,
faMoon,
faArrowsRotate,
faMinus,
faPlus,
faBars,
faChevronDown,
faDownload,
);
const appName = import.meta.env.VITE_APP_NAME || 'Laravel';