mocksaml/components/Footer.tsx

33 lines
1.2 KiB
TypeScript
Raw Normal View History

2022-02-24 03:28:53 +00:00
export default function Footer() {
return (
<footer className='body-font text-gray-600'>
<div className='container mx-auto flex flex-col items-center px-5 py-8 sm:flex-row'>
<a className='title-font flex items-center justify-center font-medium text-gray-900 md:justify-start'>
2022-02-24 03:28:53 +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'
2022-02-24 03:28:53 +00:00
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-xl'>Mock SAML</span>
</a>
2022-02-24 18:16:45 +00:00
<p className='mt-4 text-sm text-gray-500 sm:ml-4 sm:mt-0 sm:border-l-2 sm:border-gray-200 sm:py-2 sm:pl-4'>
2022-02-24 04:16:49 +00:00
Powered by
2022-02-24 03:28:53 +00:00
<a
href='https://ory.sh'
2022-02-24 03:28:53 +00:00
className='ml-1 text-gray-600'
rel='noopener noreferrer'
target='_blank'>
<strong>Ory</strong>
2022-02-24 03:28:53 +00:00
</a>
</p>
</div>
</footer>
);
}