diff --git a/client/src/components/Header.jsx b/client/src/components/Header.jsx index 7e9261e..53af68f 100644 --- a/client/src/components/Header.jsx +++ b/client/src/components/Header.jsx @@ -1,4 +1,4 @@ -import { chakra, useRecipe, Box, Button, Avatar, Stack, Text, Menu, Portal } from "@chakra-ui/react" +import { chakra, useRecipe, Box, Button, Avatar, Stack, Text, Menu, Portal, Flex } from "@chakra-ui/react" export default function Header() { const recipe = useRecipe({ key: "header" }); @@ -7,29 +7,32 @@ export default function Header() { return ( - - {user.name} - {user.email} - - {/* Add a drop down menu to the avatar */} - - - - - - - - - - - Account - Settings - Logout - - - - - {/* End drop down menu */} + + + {user.name} + {user.email} + + + {/* Add a drop down menu to the avatar */} + + + + + + + + + + + Account + Settings + Logout + + + + + {/* End drop down menu */} + ); } diff --git a/client/src/components/SearchBar.jsx b/client/src/components/SearchBar.jsx index 93bd743..3a37fe5 100644 --- a/client/src/components/SearchBar.jsx +++ b/client/src/components/SearchBar.jsx @@ -1,10 +1,16 @@ import { Input, InputGroup } from "@chakra-ui/react"; import { FiSearch } from "react-icons/fi" -export function SearchBar({ placeholder="Search...", size="sm", width="200px"}) { +export function SearchBar({ placeholder="Enter a volcano to search", size="sm", width="210px" }) { return ( }> - + ); } \ No newline at end of file diff --git a/client/src/components/Sidebar.jsx b/client/src/components/Sidebar.jsx index 83f935a..c505707 100644 --- a/client/src/components/Sidebar.jsx +++ b/client/src/components/Sidebar.jsx @@ -83,7 +83,7 @@ export default function Sidebar() { return (