Skip to content

Commit

Permalink
Merge branch 'production' of https://github.com/wtLau/brian-lau.ca in…
Browse files Browse the repository at this point in the history
…to production
  • Loading branch information
wtLau committed Oct 19, 2022
2 parents a3fbf12 + 09daca7 commit ef107df
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,12 @@ Once you've started the development server, open http://localhost:3000 with your
- Deploy modern static websites with Vercel


## Feature

- 97 Web Vital 🥂
<img width="800" alt="image" src="https://user-images.githubusercontent.com/26396307/196782271-977e4c4d-d9f3-4b99-9282-0ab237f48552.png">


## Inpirations

- [Lee Robinson](https://leerob.io/)
Expand Down
8 changes: 5 additions & 3 deletions components/layout/AppLayout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,15 +44,17 @@ declare interface LayoutProps {
const AppLayout: FC<LayoutProps> = ({ children }) => {
return (
<StyledGrid container className={classes.root} justifyContent='center'>
<Grid item xs={12}>
<Grid item xs={12} component='nav'>
<Navbar />
</Grid>

<Grid item xs={12} className={classes.body}>
<Grid item xs={12} className={classes.body} component='main'>
{children}
</Grid>

<Grid item xs={12} className={classes.footer} component={Footer} />
<Grid item xs={12} className={classes.footer} component='footer'>
<Footer />
</Grid>
</StyledGrid>
)
}
Expand Down

0 comments on commit ef107df

Please sign in to comment.