This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

fixes

+14 -2
+11
src/components/Newsletter/Newsletter.css
··· 38 38 39 39 .newsletter-page p { 40 40 text-align: center; 41 + margin: 0px auto; 41 42 } 42 43 43 44 .newsletter-form label { 44 45 font-weight: 600; 46 + } 47 + 48 + .intro-paragraph { 49 + max-width: 300.2px; 50 + margin: auto; 51 + margin-top: auto; 52 + gap: 10px; 53 + display: flex; 54 + flex-direction: column; 55 + margin-top: 20px; 45 56 } 46 57 47 58 button {
+3 -2
src/components/Newsletter/Newsletter.js
··· 1 1 // src/components/Newsletter/Newsletter.jsx 2 2 import React from 'react'; 3 3 import './Newsletter.css'; 4 + import { Link } from 'react-router-dom'; 4 5 5 6 const Newsletter = () => { 6 7 return ( ··· 8 9 <div className="alt-card"> 9 10 <h1>Subscribe to the Newsletter</h1> 10 11 <div className="intro-paragraph"> 11 - <p>Hi, my name is Dame!</p> 12 + <p>Hi, my name is <a href="https://bsky.app/profile/dame.is" target="_blank" rel="noopener noreferrer">Dame</a>!</p> 12 13 <p>I'm the creator of cred.blue.</p> 13 14 <p>If you'd like to stay up-to-date with cred.blue and the other things I'm making, sign up with your email below.</p> 14 15 </div> ··· 24 25 type="email" 25 26 name="email" 26 27 id="bd-email" 27 - placeholder="username@gmail.com" 28 + placeholder="name@fastmail.com" 28 29 /> 29 30 30 31 <label htmlFor="bsky-handle">Bluesky Handle (Optional)</label>