Skip to content

Commit

Permalink
Use https.
Browse files Browse the repository at this point in the history
  • Loading branch information
chris-bryant committed Apr 10, 2024
1 parent 476b381 commit 53a4b55
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/app/about/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const StyledBigHeader = styled(BigHeader)(() => ({
}));

const imageLoader = ({ src, width, quality }: ImageLoaderProps) => {
return `http://www.elderbrew.com/${src}?w=${width}&q=${quality || 75}`
return `https://www.elderbrew.com/${src}?w=${width}&q=${quality || 75}`
}

export default function About() {
Expand Down
2 changes: 1 addition & 1 deletion src/app/layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import InstagramIcon from '@mui/icons-material/Instagram';
const robotoCondensed = Roboto_Condensed({ subsets: ["latin"] });

const imageLoader = ({ src, width, quality }: ImageLoaderProps) => {
return `http://www.elderbrew.com/${src}?w=${width}&q=${quality || 75}`
return `https://www.elderbrew.com/${src}?w=${width}&q=${quality || 75}`
}

const Footer = styled(Box)(() => ({
Expand Down
2 changes: 1 addition & 1 deletion src/app/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const StyledBigHeader = styled(BigHeader)`
`;

const imageLoader = ({ src, width, quality }: ImageLoaderProps) => {
return `http://www.elderbrew.com/${src}?w=${width}&q=${quality || 75}`
return `https://www.elderbrew.com/${src}?w=${width}&q=${quality || 75}`
}

export default function About() {
Expand Down

0 comments on commit 53a4b55

Please sign in to comment.