-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add newsletter-form to subscribe users
- TODO: Implement the logic to subscribe to Hashnode Newsletter API
- Loading branch information
Showing
21 changed files
with
1,781 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,10 @@ | ||
import { NewsletterForm } from '@/components/newsletter-form' | ||
|
||
export default function Page() { | ||
return <div>About Page</div> | ||
return ( | ||
<section> | ||
About Page | ||
<NewsletterForm /> | ||
</section> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,22 @@ | ||
import { ContactMe } from '@/components/contact-me' | ||
import { NewsletterForm } from '@/components/newsletter-form' | ||
|
||
export default function Contact() { | ||
return ( | ||
<section className='container max-w-3xl'> | ||
<h2 className='title'>Get in touch</h2> | ||
<p className='font-light text-muted-foreground'> | ||
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Deserunt | ||
maxime neque numquam quia quis facere atque incidunt dolorem sed! | ||
</p> | ||
<br /> | ||
<p className='font-light text-muted-foreground'> | ||
Lorem ipsum dolor, sit amet consectetur adipisicing elit. Deserunt | ||
maxime neque numquam quia quis facere atque incidunt dolorem sed! | ||
</p> | ||
|
||
<ContactMe /> | ||
<NewsletterForm /> | ||
</section> | ||
) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.