model search for runware.ai implemented, added app logo and dashboard stats
This commit is contained in:
0
resources/css/filament.css
Normal file
0
resources/css/filament.css
Normal 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';
|
||||
|
||||
@@ -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.',
|
||||
],
|
||||
|
||||
@@ -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.',
|
||||
],
|
||||
|
||||
4
resources/views/vendor/filament/components/brand.blade.php
vendored
Normal file
4
resources/views/vendor/filament/components/brand.blade.php
vendored
Normal 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>
|
||||
Reference in New Issue
Block a user