diff --git a/src/apps/draw/create/FallbackNoImages.tsx b/src/apps/draw/create/FallbackNoImages.tsx
new file mode 100644
index 000000000..4a4bfab7a
--- /dev/null
+++ b/src/apps/draw/create/FallbackNoImages.tsx
@@ -0,0 +1,29 @@
+import * as React from 'react';
+
+import { Box, Card, Typography } from '@mui/joy';
+
+import { Brand } from '~/common/app.config';
+
+
+export function FallbackNoImages() {
+ return (
+
+ {/**/}
+ {/* {Brand.Title.Base} Draw*/}
+ {/**/}
+
+ Simply type in a description, and the AI will bring your vision to life.
+ To get started enter your prompt and hit "Draw"!
+
+
+ );
+}
\ No newline at end of file
diff --git a/src/apps/draw/create/DrawUnconfigured.tsx b/src/apps/draw/create/FallbackUnconfigured.tsx
similarity index 57%
rename from src/apps/draw/create/DrawUnconfigured.tsx
rename to src/apps/draw/create/FallbackUnconfigured.tsx
index 5eab7264e..6abefd8c4 100644
--- a/src/apps/draw/create/DrawUnconfigured.tsx
+++ b/src/apps/draw/create/FallbackUnconfigured.tsx
@@ -5,23 +5,27 @@ import { Button, Card, CardActions, CardContent, Typography } from '@mui/joy';
import { PreferencesTab, useOptimaLayout } from '~/common/layout/optima/useOptimaLayout';
-export function DrawUnconfigured() {
+export function FallbackUnconfigured() {
// external state
const { openPreferencesTab } = useOptimaLayout();
- const handleConfigure = () => openPreferencesTab(PreferencesTab.Draw);
+ const handleConfigureDrawing = () => openPreferencesTab(PreferencesTab.Draw);
return (
-
+
- Text-to-Image does not seem available.
+ AI Text-to-Image does not seem available.
Please configure one service, such as an OpenAI LLM service, or the Prodia service.
-