OpenedFirstChannel.tsx raw

   1  import TickSVG from "public/images/illustrations/tick.svg";
   2  import TwoColumnLayoutHeader from "src/components/TwoColumnLayoutHeader";
   3  import { LinkButton } from "src/components/ui/custom/link-button";
   4  
   5  export function OpenedFirstChannel() {
   6    return (
   7      <div className="flex flex-col items-center justify-center gap-10 p-5 w-full max-w-md">
   8        <TwoColumnLayoutHeader
   9          title="Channel Opened"
  10          pageTitle="Channel Opened"
  11          description="Your new lightning channel is ready to use."
  12        />
  13  
  14        <img src={TickSVG} className="w-48" />
  15  
  16        <LinkButton to="/wallet/receive" className="flex w-full justify-center">
  17          Receive Your First Payment
  18        </LinkButton>
  19      </div>
  20    );
  21  }
  22