model search for runware.ai implemented, added app logo and dashboard stats

This commit is contained in:
2025-08-08 14:56:39 +02:00
parent cfceaed08f
commit 543127d339
13 changed files with 317 additions and 30 deletions

View File

View File

@@ -1,4 +1,5 @@
<template>
<Head title="Start" />
<div class="home">
<div class="main-content">
<div class="gallery-container" @touchstart="handleTouchStart" @touchend="handleTouchEnd">
@@ -69,7 +70,7 @@ const fetchImages = () => {
showError(error.response?.data?.error || 'An unknown error occurred.');
});
};
import { Head } from '@inertiajs/vue3';
import Navigation from '../Components/Navigation.vue';
import GalleryGrid from '../Components/GalleryGrid.vue';
import ImageContextMenu from '../Components/ImageContextMenu.vue';

View File

@@ -9,6 +9,8 @@ return [
'model_type' => 'Modell Typ',
'enabled' => 'Aktiviert',
'api_providers' => 'API Provider',
'api_provider' => 'API Provider',
'search_model' => 'Modell suchen',
'parameters' => 'Parameter',
'parameters_help' => 'Für ComfyUI, fügen Sie hier das Workflow-JSON ein. Verwenden Sie __PROMPT__, __FILENAME__ und __MODEL_ID__ als Platzhalter.',
],

View File

@@ -9,6 +9,8 @@ return [
'model_type' => 'Model Type',
'enabled' => 'Enabled',
'api_providers' => 'API Providers',
'api_provider' => 'API Provider',
'search_model' => 'Search Model',
'parameters' => 'Parameters',
'parameters_help' => 'For ComfyUI, paste the workflow JSON here. Use __PROMPT__, __FILENAME__, and __MODEL_ID__ as placeholders.',
],

View File

@@ -0,0 +1,4 @@
<div style="display: flex; align-items: center;">
<img src="{{ asset('icon.png') }}" alt="App Icon" style="height: 2.5rem; margin-right: 0.5rem;" />
<span style="font-weight: bold; font-size: 1.25rem;">{{ config('app.name') }}</span>
</div>