Skip to content

Commit

Permalink
Newsletter (#224)
Browse files Browse the repository at this point in the history
  • Loading branch information
devarshishimpi authored Nov 7, 2022
2 parents 25f11d7 + c9d7af4 commit 50b1025
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 0 deletions.
Binary file added apps/web/frontend/public/assets/email.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions apps/web/frontend/src/components/NewLandingPage/Pages/Home.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import Info from '../components/Info'
import Footer from '../components/Footer'
import About from '../components/About'
import Description from '../components/Description'
import NewsLetter from '../components/NewsLetter'

const Home = () => {
return (
Expand All @@ -14,6 +15,7 @@ const Home = () => {
<Info/>
<About/>
<Description/>
<NewsLetter/>
<Footer/>
</div>
)
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
import React from 'react'

const NewsLetter = () => {
return (
<section className='tw-flex tw-justify-center tw-items-center tw-flex-col tw-p-6'>
<img src = "assets/email.png" alt = "email" className='tw-w-[20vw]'/>
<h1 className='tw-text-[2rem] tw-text-[#3b73c6] '>SUBSCRIBE</h1>
<p className='tw-text-lg'>Suscribe to our Newsletter & stay Updated</p>
<div className=' tw-flex tw-justify-around tw-items-center tw-gap-3 tw-w-[20vw] tw-mt-3'>
<input type="email" placeholder="Your email id here" className='tw-px-8 tw-rounded-[25px] tw-py-3 tw-w-[15vw]'/>
<button className="tw-py-3 tw-px-3 tw-text-white tw-bg-[#3b73c6] tw-rounded-[25px] hover:tw-text-[#3b73c6] hover:tw-bg-white">Suscribe</button>
</div>
</section>
)
}

export default NewsLetter
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import React from 'react'

const testimonials = () => {
return (
<div>

</div>
)
}

export default testimonials

0 comments on commit 50b1025

Please sign in to comment.