Various Style Updates from Johannes

This commit is contained in:
Ray 2023-11-19 16:01:58 +00:00 committed by GitHub
parent 62807c6665
commit 2634dfd94e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -151,7 +151,7 @@ function App() {
<StorageContext.Provider value={FBstorage}> <StorageContext.Provider value={FBstorage}>
<Routes> <Routes>
<Route path="/" element={<Home items={data} />} /> <Route path="/" element={<Home items={data} />} />
<Route path="/about" element={<About greeting="Hey you, this is about page!" handler={saySomething} />} /> <Route path="/about" element={<About greeting="Hey you, this is about page!" />} />
<Route path="/contact" element={<Contact greeting="Hey you, this is contact page!" />} /> <Route path="/contact" element={<Contact greeting="Hey you, this is contact page!" />} />
<Route path="/signup" element={<Signup handler={signUp} />} /> <Route path="/signup" element={<Signup handler={signUp} />} />
<Route path="/signout" element={<Signout handler={logOut} />} /> <Route path="/signout" element={<Signout handler={logOut} />} />

View File

@ -27,7 +27,7 @@ export function Header(props) {
} }
return ( return (
<Navbar> <Navbar className="mb-3">
<Container> <Container>
<Navbar.Brand>Ray's Book Club</Navbar.Brand> <Navbar.Brand>Ray's Book Club</Navbar.Brand>
<Nav> <Nav>

View File

@ -24,7 +24,7 @@ export function Detail(props) {
<Container> <Container>
<Row> <Row>
<Col> <Col>
<h1>{bookData.book_title}</h1> <h1 className="my-4">{bookData.book_title}</h1>
</Col> </Col>
</Row> </Row>
<Row> <Row>