Skip to content

Commit 31746f7

Browse files
committed
helmet stuff
1 parent 558c697 commit 31746f7

8 files changed

+123
-15
lines changed

package-lock.json

+86
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
"gray-matter": "^4.0.3",
2121
"react": "^18.2.0",
2222
"react-dom": "^18.2.0",
23+
"react-helmet-async": "^1.3.0",
2324
"react-markdown": "^8.0.5",
2425
"react-router-dom": "^6.8.1",
2526
"react-syntax-highlighter": "^15.5.0"

src/components/DisplayPost.jsx

+3
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ import { Container, Typography, Link } from "@mui/material";
55
import { useParams } from "react-router-dom";
66
import { Prism as SyntaxHighlighter } from "react-syntax-highlighter";
77
import { a11yDark } from "react-syntax-highlighter/dist/esm/styles/prism";
8+
import { Helmet } from "react-helmet-async";
89

910
function DisplayPost({ type }) {
1011
const params = useParams();
@@ -34,13 +35,15 @@ function DisplayPost({ type }) {
3435
if (markdownError) {
3536
return (
3637
<Container>
38+
<Helmet title={`Daniel Reguero Blog | Post Not Found`} />
3739
<Typography variant="h4" align="center" sx={{ paddingBottom: ".5em" }}>Not Found</Typography>
3840
<Typography variant="body1" align="center">Sorry, couldn't find this post :&#40;</Typography>
3941
</Container>
4042
)
4143
}
4244
return (
4345
<Container>
46+
<Helmet title={`Daniel Reguero Blog | ${title}`} />
4447
<Typography variant="h4" align="center" sx={{ paddingBottom: ".25em" }}>{title}</Typography>
4548
<Typography variant="h6" align="center" sx={{ color: "#666", fontSize: "1.1rem" }}>{date}</Typography>
4649
<Container maxWidth="md">

src/components/DisplayPostsList.jsx

+17-13
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { Typography, ListItem, ListItemText, Link, Grid } from "@mui/material";
22
import { Link as LinkRouter } from "react-router-dom";
3+
import { Helmet } from "react-helmet-async";
34

45
const PostsLinkListItem = ({ type, post }) => {
56
if (post.draft) {
@@ -27,20 +28,23 @@ const PostsLinkListItem = ({ type, post }) => {
2728

2829
function DisplayPostsLists({ title, type, posts }) {
2930
return (
30-
<Grid
31-
container
32-
spacing={0}
33-
direction="column"
34-
alignItems="center"
35-
justifyContent="center"
36-
>
37-
<Grid item xs={3}>
38-
<Typography variant="h4" gutterBottom>{title}</Typography>
31+
<>
32+
<Helmet title={`Daniel Reguero Blog | ${title}`} />
33+
<Grid
34+
container
35+
spacing={0}
36+
direction="column"
37+
alignItems="center"
38+
justifyContent="center"
39+
>
40+
<Grid item xs={3}>
41+
<Typography variant="h4" gutterBottom>{title}</Typography>
42+
</Grid>
43+
<Grid item xs={5}>
44+
{posts.map((post, i) => <PostsLinkListItem post={post} type={type} key={i} />)}
45+
</Grid>
3946
</Grid>
40-
<Grid item xs={5}>
41-
{posts.map((post, i) => <PostsLinkListItem post={post} type={type} key={i} />)}
42-
</Grid>
43-
</Grid>
47+
</>
4448
)
4549
}
4650

src/main.jsx

+5-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,13 @@
11
import React from 'react'
22
import ReactDOM from 'react-dom/client'
3+
import { HelmetProvider } from 'react-helmet-async'
4+
35
import App from './App'
46

57
ReactDOM.createRoot(document.getElementById('root')).render(
68
<React.StrictMode>
7-
<App />
9+
<HelmetProvider>
10+
<App />
11+
</HelmetProvider>
812
</React.StrictMode>,
913
)

src/pages/About.jsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { Typography, Link, Container } from "@mui/material";
22
import { styled } from "@mui/material/styles";
3+
import { Helmet } from "react-helmet-async";
34

45
const StyledContainer = styled(Container)(() => ({
56
"& .MuiTypography-root": {
@@ -10,6 +11,7 @@ const StyledContainer = styled(Container)(() => ({
1011
function About() {
1112
return (
1213
<>
14+
<Helmet title="Daniel Reguero Blog | About" />
1315
<Typography variant="h4" align="center" gutterBottom>About</Typography>
1416
<StyledContainer maxWidth="md">
1517
<Typography gutterBottom>

src/pages/Home.jsx

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
import { Container, Grid, Link, List, ListItem, ListItemText, Typography } from "@mui/material";
22
import { Link as LinkRouter } from "react-router-dom";
3+
import { Helmet } from "react-helmet-async";
34

45
import routes from "../routes";
56

@@ -27,6 +28,7 @@ const RouteLinkList = ({ route }) => {
2728
const Home = () => {
2829
return (
2930
<Container>
31+
<Helmet title='Daniel Reguero Blog' />
3032
<Grid sx={{minHeight: "100vh"}} container spacing={0} alignItems="center" justifyItems="center">
3133
<Grid item xs={12}>
3234
<Typography variant="h3" align="center" gutterBottom>Daniel Reguero</Typography>

src/pages/NotFound.jsx

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,13 @@
11
import { Typography } from "@mui/material";
2+
import { Helmet } from "react-helmet";
23

34
function NotFound() {
4-
return <Typography variant="h4" align="center" gutterBottom>404 Not Found</Typography>;
5+
return (
6+
<>
7+
<Helmet title="Daniel Reguero Blog | Not Found" />
8+
<Typography variant="h4" align="center" gutterBottom>404 Not Found</Typography>
9+
</>
10+
);
511
}
612

713
export default NotFound;

0 commit comments

Comments
 (0)