diff --git a/client/src/components/Home/index.js b/client/src/components/Home/index.js index 65a485b..1e14b9c 100644 --- a/client/src/components/Home/index.js +++ b/client/src/components/Home/index.js @@ -1,5 +1,70 @@ +import {Box, IconButton} from '@mui/material'; +import {TextField} from '@mui/material'; +import SearchIcon from '@mui/icons-material/Search'; + +function SearchBar() { + return ( +
+ + + + + + +
+ ); +} + export default function Home() { return ( - 'this is the home page' +
+
+

+ Course Wiki +

+

+ Knowledge is the cheapest and most rewarding investment +

+ +
+ home +
+
+
+
); } diff --git a/client/src/components/NavigationBar.js b/client/src/components/NavigationBar.js index fac1c24..cc52670 100644 --- a/client/src/components/NavigationBar.js +++ b/client/src/components/NavigationBar.js @@ -29,32 +29,43 @@ export default function NavigationBar(props) { - + Course Wiki {navItems.map((item) => ( - ))} { @@ -85,42 +96,9 @@ export default function NavigationBar(props) { ))} - - - Course Wiki - - - Knowledge is the cheapest and most rewarding investment - - - - + + {props.children}