-
-
Notifications
You must be signed in to change notification settings - Fork 83
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
30 additions
and
0 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
17 changes: 17 additions & 0 deletions
17
apps/web/frontend/src/components/NewLandingPage/components/NewsLetter.js
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 |
---|---|---|
@@ -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 |
11 changes: 11 additions & 0 deletions
11
apps/web/frontend/src/components/NewLandingPage/components/testimonials.js
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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
import React from 'react' | ||
|
||
const testimonials = () => { | ||
return ( | ||
<div> | ||
|
||
</div> | ||
) | ||
} | ||
|
||
export default testimonials |