import Head from 'next/head'; import type { ReactNode } from 'react'; import Header from './Header'; type LayoutProps = { children: ReactNode; }; 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 testing SAML SSO integrations.'; const website = 'https://mocksaml.com'; const ogImage = `${website}/mock-saml-preview-image.png`; return ( <>