Add navigation and hardcoded hosts

This commit is contained in:
LukeGus
2025-09-05 21:37:14 -05:00
parent 40096fedaf
commit 51cced8f83
8 changed files with 293 additions and 32 deletions

View File

@@ -0,0 +1,16 @@
import { Button } from "@/components/ui/button";
import {Menu} from "lucide-react";
interface MenuProps {
onSidebarOpenClick?: () => void;
}
export function BottomNavbar({onSidebarOpenClick}: MenuProps) {
return (
<div className="w-full h-[80px] bg-[#18181BFF] flex flex-col justify-center">
<Button className="w-[40px] h-[40px] ml-2" variant="outline" onClick={onSidebarOpenClick}>
<Menu />
</Button>
</div>
)
}