import PrebuiltCall from '../components/PrebuiltCall';
export default function Home() {
return (
<>
<PrebuiltCall />
<style jsx>{`
display: flex;
align-items: center;
justify-content: center;
height: 100vh;
`}</style>
</>
);
}