2022-02-24 05:38:43 +00:00
|
|
|
import Link from 'next/link';
|
|
|
|
|
|
2022-02-24 03:28:53 +00:00
|
|
|
export default function Header() {
|
|
|
|
|
return (
|
2022-07-27 07:52:38 +00:00
|
|
|
<header className='body-font border-b px-2 text-gray-600'>
|
|
|
|
|
<div className='container mx-auto flex flex-col flex-wrap items-center justify-between space-y-2 py-3 md:flex-row'>
|
2022-12-15 22:20:22 +00:00
|
|
|
<Link
|
|
|
|
|
href='https://github.com/boxyhq/mock-saml'
|
|
|
|
|
target='_blank'
|
|
|
|
|
className='title-font flex items-center font-medium text-gray-900 md:mb-0'>
|
2022-11-08 03:33:16 +00:00
|
|
|
<svg
|
|
|
|
|
xmlns='http://www.w3.org/2000/svg'
|
|
|
|
|
fill='none'
|
|
|
|
|
stroke='currentColor'
|
|
|
|
|
strokeLinecap='round'
|
|
|
|
|
strokeLinejoin='round'
|
|
|
|
|
strokeWidth={2}
|
|
|
|
|
className='h-10 w-10 rounded-full bg-indigo-500 p-2 text-white'
|
|
|
|
|
viewBox='0 0 24 24'>
|
|
|
|
|
<path d='M12 2L2 7l10 5 10-5-10-5zM2 17l10 5 10-5M2 12l10 5 10-5' />
|
|
|
|
|
</svg>
|
|
|
|
|
<span className='ml-3 text-2xl'>Mock SAML</span>
|
2022-02-24 05:38:43 +00:00
|
|
|
</Link>
|
2022-07-27 07:52:38 +00:00
|
|
|
<div className='flex flex-col items-center space-y-2 md:flex-row md:space-y-0 md:space-x-2'>
|
|
|
|
|
<span>
|
2022-03-03 18:40:32 +00:00
|
|
|
<a
|
2022-11-08 03:33:16 +00:00
|
|
|
className='btn-outline btn-sm btn'
|
2022-07-26 21:28:46 +00:00
|
|
|
href='https://github.com/boxyhq/jackson'
|
2022-03-03 18:40:32 +00:00
|
|
|
rel='noopener noreferrer'
|
|
|
|
|
target='_blank'>
|
2022-07-26 21:28:46 +00:00
|
|
|
Integrate SAML with a few lines of code
|
|
|
|
|
</a>
|
|
|
|
|
</span>
|
|
|
|
|
<span>
|
|
|
|
|
Made with <span className='text-red-500'>♥</span>{' '}
|
2025-12-10 16:47:54 +00:00
|
|
|
<a href='https://ory.com' rel='noopener noreferrer' target='_blank'>
|
2025-05-29 11:32:14 +00:00
|
|
|
<strong>Ory</strong>
|
2022-03-03 18:40:32 +00:00
|
|
|
</a>
|
|
|
|
|
</span>
|
2022-07-26 21:28:46 +00:00
|
|
|
</div>
|
2022-02-24 03:28:53 +00:00
|
|
|
</div>
|
|
|
|
|
</header>
|
|
|
|
|
);
|
|
|
|
|
}
|