@@ -219,8 +219,14 @@
{#if messages.length === 0}
-
-
{getGreetingByTime()}
+
+
+
+
+
+
+
{getGreetingByTime()}
+
{/if}
@@ -360,7 +366,34 @@
padding-bottom: var(--size-4-2);
}
- .conversation-empty-state {
+ .conversation-empty-container {
+ display: grid;
+ height: 100%;
+ width: 100%;
+ }
+
+ .conversation-empty-animation {
+ grid-row: 1;
+ grid-column: 1;
+ height: 100%;
+ width: 100%;
+ }
+
+ .conversation-empty-greeting-backdrop {
+ position: absolute;
+ inset: -48px;
+ background: radial-gradient(
+ ellipse closest-side,
+ var(--background-secondary) 0%,
+ color-mix(in srgb, var(--background-secondary) 80%, transparent) 65%,
+ transparent 100%
+ );
+ }
+
+ .conversation-empty-greeting {
+ grid-row: 1;
+ grid-column: 1;
+ position: relative;
margin: auto;
font-style: italic;
font-size: var(--font-ui-medium);
@@ -368,6 +401,13 @@
pointer-events: none;
}
+ .conversation-empty-greeting-label {
+ position: relative;
+ overflow: hidden;
+ white-space: nowrap;
+ padding: var(--size-2-2);
+ }
+
.streaming-content {
justify-content: left;
min-height: 1em; /* Ensure the element exists for binding */
diff --git a/Components/GraphAnimation.svelte b/Components/GraphAnimation.svelte
new file mode 100644
index 0000000..7272da8
--- /dev/null
+++ b/Components/GraphAnimation.svelte
@@ -0,0 +1,183 @@
+
+
+
+
+