diff --git a/src/components/dashboard/OSBar.tsx b/src/components/dashboard/Actionbar.tsx similarity index 100% rename from src/components/dashboard/OSBar.tsx rename to src/components/dashboard/Actionbar.tsx diff --git a/src/components/dashboard/TitleBar.tsx b/src/components/dashboard/TitleBar.tsx index c26af60..5782756 100644 --- a/src/components/dashboard/TitleBar.tsx +++ b/src/components/dashboard/TitleBar.tsx @@ -5,27 +5,42 @@ import { StereoUser } from "~/lib/types"; export default component$(() => { const greetings = [ - "what's on the agenda today, |?", - "what's on your mind, |?", - "what's the plan, |?", - "ready to rock, |?", - "what's brewing, |?", - "what's the latest, |?", - "how's your day going, |?", - "need some inspiration, |?", - "let's make some noise, |!", - "welcome back, |!", - "good to see you, |!", - "what are we making today, |?", - "time to make some magic, |!", - "let's get creative, |?", - "what's the vibe today, |?", + "what's on the agenda today, ?", + "what's on your mind, ?", + "what's the plan, ?", + "ready to rock, ?", + "what's brewing, ?", + "what's the latest, ?", + "how's your day going, ?", + "need some inspiration, ?", + "let's make some noise, !", + "welcome back, !", + "good to see you, !", + "what are we making today, ?", + "time to make some magic, !", + "let's get creative, !", + "what's the vibe today, ?", + "let's create something awesome, !", + "what's the next big thing, ?", + "let's turn ideas into reality, !", + "let's see your next masterpiece, !", + "let's make some art, !", + "what's the next hit, ?", + "let's make some music, !", + "let's make some waves, !", + "what brilliance awaits, ?", + "ready to brainstorm, ?", + "let's bring ideas to life, !", + "don't get any ideas, ...", + "let's try this again, !", + "let's get this party started, !", + "let's make something unforgettable, !", ] const greeting = greetings[Math.floor(Math.random() * greetings.length)]; const user = useNanostore$(userInfo); - const splits = greeting.split("|"); + const splits = greeting.split(""); useTask$(({ track }) => { track(() => user.value); diff --git a/src/routes/dashboard/index.tsx b/src/routes/dashboard/index.tsx index 7ec3ff3..16911f1 100644 --- a/src/routes/dashboard/index.tsx +++ b/src/routes/dashboard/index.tsx @@ -1,8 +1,8 @@ import { component$, Signal, useSignal, useTask$, useVisibleTask$ } from "@builder.io/qwik"; import { routeLoader$, type DocumentHead } from "@builder.io/qwik-city"; -import OSBar from "~/components/dashboard/OSBar"; +import Actionbar from "~/components/dashboard/Actionbar"; import Settings from "~/components/dashboard/Settings"; -import TitleBar from "~/components/dashboard/TitleBar"; +import Titlebar from "~/components/dashboard/Titlebar"; // import Dropzone from "~/components/Dropzone"; import { useNanostore$ } from "~/hooks/nanostores"; import { api } from "~/lib/api"; @@ -30,9 +30,9 @@ export default component$(() => { <>
- + - +
);