Skip to content

Commit

Permalink
Merge pull request #5 from mmyyrroonn/add-subscribe-button
Browse files Browse the repository at this point in the history
Add google form as the subscribe button
  • Loading branch information
ziboilihua authored Nov 17, 2023
2 parents dbe1a69 + c3b8ff7 commit e687757
Showing 1 changed file with 14 additions and 5 deletions.
19 changes: 14 additions & 5 deletions components/pages/home/SectionTop.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,19 +35,28 @@ export const SectionTop = React.memo(() => {
<p>Cloud 3</p>
<p>Redefining Web3 Storage</p>
</div>
<div className="flex mt-12 pl-1 mb-20">
<Button
<div className="flex flex-col mt-12 pl-1 mb-20">
<div className="flex mb-3">
<Button
text="Documentations"
className="btn-173 border-white text-white"
onClick={()=>openExtUrl('https://docs.crustcloud.io/')}
/>
<Button
/>
<Button
text="Launch App"
className="btn-173 ml-3 border-white text-white"
onClick={() =>
IS_LOCAL ? openExtUrl("/#/buckets", '_self') : openExtUrl("/#/buckets")
}
/>
/>
</div>
<div className="flex">
<Button
text="Subscribe"
className="btn-173 border-white text-white"
onClick={()=>openExtUrl('https://forms.gle/7pbhXXmjPgzuPRLy5')}
/>
</div>
</div>
</div>
</div>
Expand Down

0 comments on commit e687757

Please sign in to comment.