Enhance dashboard components with new icons, layout adjustments, and improved file display
This commit is contained in:
parent
f164351011
commit
b36d3b76a1
9 changed files with 159 additions and 26 deletions
|
@ -1,4 +1,4 @@
|
|||
import { component$ } from "@builder.io/qwik";
|
||||
import { component$, useTask$ } from "@builder.io/qwik";
|
||||
import { useNanostore$ } from "~/hooks/nanostores";
|
||||
import { userInfo } from "~/lib/stores";
|
||||
import { StereoUser } from "~/lib/types";
|
||||
|
@ -26,9 +26,13 @@ export default component$(() => {
|
|||
const user = useNanostore$<StereoUser>(userInfo);
|
||||
|
||||
const splits = greeting.split("|");
|
||||
|
||||
useTask$(({ track }) => {
|
||||
track(() => user.value);
|
||||
})
|
||||
|
||||
return (
|
||||
<div class="py-4 rounded-lg">
|
||||
<div class="rounded-lg">
|
||||
<p class="font-medium text-4xl text-stereo/45">
|
||||
{splits[0]}
|
||||
<span class="text-stereo">
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue