From f4e5e0973875445d2973ee9438c67a7bcccc44a3 Mon Sep 17 00:00:00 2001 From: Kiran K Date: Tue, 1 Mar 2022 18:17:34 +0530 Subject: [PATCH] Fix the image path for ogimage (#9) --- components/Layout.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/components/Layout.tsx b/components/Layout.tsx index 20ba542..73ee564 100644 --- a/components/Layout.tsx +++ b/components/Layout.tsx @@ -9,8 +9,8 @@ type LayoutProps = { export default function Layout({ children }: LayoutProps) { const title = 'Mock SAML - A free SAML 2.0 Identity Provider for testing SAML SSO integrations.'; const description = 'A free SAML 2.0 Identity Provider for development and testing SAML SSO integrations.'; - const website = 'https://mocksaml.com/'; - const ogImage = '/mock-saml-preview-image.png'; + const website = 'https://mocksaml.com'; + const ogImage = `${website}/mock-saml-preview-image.png`; return ( <>