import Image from "next/image"; import * as React from "react"; import { Button, Header, Modal, Icon } from "semantic-ui-react"; export default function Home() { const [open, setOpen] = React.useState(false); return (
setOpen(false)} onOpen={() => setOpen(true)} open={open} trigger={} > Select a Photo
Default Profile Image

We've found the following gravatar image associated with your e-mail address.

Is it okay to use this photo?

); }