Skip to content

Commit

Permalink
feat(images): add a default banner
Browse files Browse the repository at this point in the history
  • Loading branch information
nfroidure committed May 11, 2023
1 parent 03868b3 commit c919146
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/layouts/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ type Props = {
image?: string;
};

const Layout = ({ children, title, description = "", image = "" }: Props) => {
const Layout = ({ children, title, description = "", image = "/images/banner.png" }: Props) => {
return (
<div className="root">
<Meta
Expand Down

0 comments on commit c919146

Please sign in to comment.