refactor: replace OSBar with Actionbar and update TitleBar to Titlebar with more personalized greetings
This commit is contained in:
parent
c0563b844a
commit
f25e096063
3 changed files with 35 additions and 20 deletions
|
@ -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$(() => {
|
|||
<>
|
||||
<Settings />
|
||||
<div class="flex flex-col w-full h-screen p-8 gap-6 bg-gradient-to-b from-stereo/20 to-transparent justify-self-end">
|
||||
<TitleBar />
|
||||
<Titlebar />
|
||||
<Files files={files} loaded={loaded} />
|
||||
<OSBar />
|
||||
<Actionbar />
|
||||
</div>
|
||||
</>
|
||||
);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue