From c919146020806633d6346c9e46e497d94982ef25 Mon Sep 17 00:00:00 2001 From: Nicolas Froidure Date: Thu, 11 May 2023 11:59:20 +0200 Subject: [PATCH] feat(images): add a default banner --- src/layouts/main.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/main.tsx b/src/layouts/main.tsx index cc57d52f..01032b27 100644 --- a/src/layouts/main.tsx +++ b/src/layouts/main.tsx @@ -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 (