Base layout

This commit is contained in:
Aslan 2025-12-30 22:38:02 +01:00
parent 874bd18f11
commit f1e90c4dd2
34 changed files with 2966 additions and 2725 deletions

View file

@ -0,0 +1,22 @@
import type { Component } from "solid-js";
const MessageBar: Component = () => {
return (
<div class="bg-stone-800 h-16 shadow-bar z-10 p-2">
<div class="join w-full h-full">
<div class="w-full h-full">
<label class="input validator join-item w-full h-full">
<input
type="text"
placeholder="Write a text message..."
required
/>
</label>
</div>
<button class="btn btn-neutral join-item h-full">Send</button>
</div>
</div>
);
};
export default MessageBar;