Add navigation and hardcoded hosts
This commit is contained in:
16
src/ui/Mobile/Apps/Navigation/BottomNavbar.tsx
Normal file
16
src/ui/Mobile/Apps/Navigation/BottomNavbar.tsx
Normal 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>
|
||||
)
|
||||
}
|
||||
Reference in New Issue
Block a user