Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Frontend #172

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,19 @@ const Home: NextPage = () => {
<WalletData />
</header>
<main className={styles.main}>
<div className={styles.text}>
<h1>Fundraising using a Soroban Template is easy, powerful, and trusted.</h1>
<h2>Get what you need to help your fundraiser succeed on Soroban, whether you’re raising money for yourself, friends, family, or charity. With no fee to start, Soroban is the world’s leading onchain crowdfunding platform—from memorial tributes and funerals to medical emergencies and nonprofits. Whenever you need help, you can ask here.</h2>
</div>

<div className={styles.content}>
<Campaign />
<Pledge />
</div>
<div className={styles.text}>
<h3>Still have questions? Learn more about how Soroban works.</h3>
<p>Send us an email at <a href="/home"> support.soroban.psc</a></p>
</div>
</main>
</>
)
Expand Down
30 changes: 27 additions & 3 deletions styles/Home.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
flex-wrap: wrap;
padding-top: 1rem;
max-width: 1100px;
margin: auto
margin: auto;
}

@media (max-width: 1150px) {
Expand All @@ -27,8 +27,32 @@

.content {
display: flex;
max-width: 1100px;
margin: 0 auto;
flex-direction: row;
padding: 10px;
margin-top: 10px;
}

.text{
padding: 10px;
}

.text h1{
font-size: 4rem;
line-height: 4rem;
margin-bottom: 1rem;
}

.text h2, .text h3{
font-weight: 400;
color: #808080;
font-size: 1.6rem;
margin-bottom: 1rem;
}
.text p{
text-align: center;
}
.text a{
color: #0070f3;
}

@media (max-width: 769px) {
Expand Down
Loading