Invite and Session API/Services; Home view; Sidebar Items; Modals

This commit is contained in:
Aslan 2026-01-10 19:24:10 -05:00
parent 280158470a
commit e36587b99d
80 changed files with 1343 additions and 71 deletions

View file

@ -1,5 +1,4 @@
import type { Component } from "solid-js";
import { state } from "../../store/state";
const MessageBar: Component = () => {
return (
@ -8,7 +7,7 @@ const MessageBar: Component = () => {
<label class="bg-stone-800/50 backdrop-blur-lg input w-full h-full rounded-full focus:border-none outline-none">
<input type="text" placeholder="Send a message..." />
</label>
<button class="bg-black/50 backdrop-blur-lg btn btn-neutral h-full rounded-full">
<button class="bg-stone-950/50 backdrop-blur-lg btn btn-neutral h-full rounded-full">
Send
</button>
</div>