Skip to content

Commit

Permalink
Update the year in the footer, as per normal convention of page first…
Browse files Browse the repository at this point in the history
… published date
  • Loading branch information
bhavberi committed Mar 12, 2024
1 parent 0df6247 commit d50c69f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Footer.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ export default function Footer() {
{isDesktop ? (
<Stack direction="row" spacing={1}>
<Typography variant="body2" fontWeight={500}>
© {new Date().getFullYear()}, IIIT Hyderabad
© 2021-{new Date().getFullYear()}, IIIT Hyderabad
</Typography>

<Box sx={{ flexGrow: 1 }} />
Expand Down Expand Up @@ -224,7 +224,7 @@ export default function Footer() {

<Stack direction="row" spacing={1}>
<Typography variant="body2" fontWeight={500}>
© {new Date().getFullYear()}, IIIT Hyderabad
© 2021-{new Date().getFullYear()}, IIIT Hyderabad
</Typography>

<Box sx={{ flexGrow: 1 }} />
Expand Down

0 comments on commit d50c69f

Please sign in to comment.