/* eslint-disable jsx-a11y/anchor-is-valid */ import {useEffect} from 'react' import {Outlet, Link} from 'react-router-dom' import {toAbsoluteUrl} from '../../../_res/helpers' const AuthLayout = () => { useEffect(() => { const root = document.getElementById('root') if (root) { root.style.height = '100%' } return () => { if (root) { root.style.height = 'auto' } } }, []) return (
{/* begin::Body */}
{/* begin::Form */}
{/* begin::Wrapper */}
{/* end::Wrapper */}
{/* end::Form */} {/* begin::Footer */}
{/* begin::Links */}
Home Terms Contact Us About Us
{/* end::Links */}
{/* end::Footer */}
{/* end::Body */} {/* begin::Aside */}
{/* begin::Content */}
{/* begin::Logo */} Float Mobility {/* end::Logo */} {/* begin::Image */} {/* end::Image */} {/* begin::Title */}

Fast, Efficient and Productive

{/* end::Title */} {/* begin::Text */}
In this kind of post,{' '} the blogger introduces a person they’ve interviewed
and provides some background information about the interviewee and their
work following this is a transcript of the interview.
{/* end::Text */}
{/* end::Content */}
{/* end::Aside */}
) } export {AuthLayout}