-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathHero.astro
More file actions
27 lines (27 loc) · 1010 Bytes
/
Hero.astro
File metadata and controls
27 lines (27 loc) · 1010 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<section
class="m-auto mt-20 flex min-h-screen flex-col items-center justify-center text-center text-lg lg:mt-0 lg:flex-row-reverse lg:text-left"
>
<div class="w-auto items-center lg:mx-20">
<img
src="/assets/art/art--bears.png"
alt=""
class="max-h-96 w-auto"
width="900"
height="900"
/>
</div>
<div class="mx-12 p-4 lg:max-w-half">
<h3 class="mt-4 text-6xl font-bold">Create public goods to Earn.</h3>
<p class="my-6 max-w-prose">
Creators can start monetization of any kind of works by issuing their own
social token (ERC-20) and then promoting them to the community. It's like
a "stock company" with all the features you need to grow your business,
including efficient management of ownership and distribution of revenue.
</p>
<a href="https://stakes.social/create" class="mx-4 mt-6 ml-0">
<button class="rounded bg-black py-2 px-6 text-white">
Submit a Project
</button>
</a>
</div>
</section>