Fix the image path for ogimage (#9)

This commit is contained in:
Kiran K 2022-03-01 18:17:34 +05:30 committed by GitHub
parent 8b3971d000
commit f4e5e09738
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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 (
<>