import { Alert, Illustration } from "@kiwicom/orbit-components";
export default function Home() {
return (
<div>
<Alert type="success" spaceAfter="large">
It Works!
</Alert>
<Illustration name="Success" />
</div>
);
}