Dusk UI Kit - Organism - Hero
![Docs](https://camo.githubusercontent.com/b7982d0f624ffb9776b1c76bee2b7cf2865bfd0892efc49017fdf3931363fa6f/68747470733a2f2f696d672e736869656c64732e696f2f62616467652f446f63756d656e746174696f6e2d2532333545333543463f7374796c653d666c6174)
npm i -D @dusk-network/hero
<script>
import Hero from "@dusk-network/hero";
import Button from "@dusk-network/button";
import RichText from "@dusk-network/rich-text";
const introduction =
"<h1>Heros are very reusable!</h1> <p>The Dusk Grants Program helps projects and developers launch to drive mainstream adoption of blockchain and build the future of finance. Opportunities on Dusk Network are endless.</p>";
const description =
"<p>Enable any size enterprise to collaborate at scale, meet the highest level of compliance requirements, and ensure that personal and transaction data remains confidential.</p>";
const image = '<img src="https://content.dusk.network/uploads/Group_10_1_b752fec2fa.svg" />';
</script>
<Hero>
<div slot="introduction">
<RichText>
{@html introduction}
</RichText>
</div>
<div slot="cta">
<Button href="https://google.com">
Apply
<svelte:fragment slot="labelRight">Join the Dusk Mission</svelte:fragment>
</Button>
<RichText>
{@html description}
</RichText>
</div>
<div slot="image">
<RichText>{@html image}</RichText>
</div>
</Hero>