Skip to content

Commit

Permalink
Update Subscribe page: text not visible
Browse files Browse the repository at this point in the history
Text was not visible, and font family was different from other pages. Fixed these.
  • Loading branch information
sau-mili authored Oct 7, 2023
1 parent ddd179a commit 5c66a39
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions pages/subscribe/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,13 @@ const styles = {
textAlign: 'center',
},
h2: {
fontFamily: 'Arial',
fontSize: '30px',
fontWeight: "bold",
color: 'grey',
marginTop: '10',
marginBottom: '5px',
},
p: {
fontFamily: 'Calibri',
fontSize: '25px',
color: 'black',
marginTop: '5px',
Expand Down Expand Up @@ -79,7 +78,7 @@ function SubscriptionPage() {
</div>

<h2 style={styles.h2}>Subscribe to our Newsletter!</h2>
<p className="text-gray-100">Get the latest updates delivered to your inbox.</p>
<p className="text-gray-400">Get the latest updates delivered to your inbox.</p>
<div style={styles.inputContainer}>
<input type="email" id="email" placeholder="[email protected]" value={email} onChange={handleEmailChange} />
</div>
Expand Down

0 comments on commit 5c66a39

Please sign in to comment.