diff --git a/components/Layout.tsx b/components/Layout.tsx
index f8c6263..59aee32 100644
--- a/components/Layout.tsx
+++ b/components/Layout.tsx
@@ -1,3 +1,4 @@
+import Head from 'next/head';
import type { ReactNode } from 'react';
import Header from './Header';
@@ -6,9 +7,34 @@ 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';
+
return (
<>
-