-
-
Notifications
You must be signed in to change notification settings - Fork 226
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
1 parent
a363438
commit c186192
Showing
2 changed files
with
10 additions
and
8 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
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,15 +1,18 @@ | ||
import React from 'react' | ||
import NewsletterForm from '~/components/Newsletter' | ||
import Layout from '~/components/Layout' | ||
import React from 'react'; | ||
import NewsletterForm from '~/components/Newsletter'; | ||
import Layout from '~/components/Layout'; | ||
|
||
const index = () => { | ||
return ( | ||
<> | ||
<Layout> | ||
<NewsletterForm className='pt-[100px] bg-white text-black' wrapperClassName='h-full sm:h-[calc(100vh-100px)] bg-white py-[50px] sm:py-0 px-5 sm:px-10 lg:w-full' /> | ||
<NewsletterForm | ||
className='pt-[100px] bg-white text-black' | ||
wrapperClassName='h-full sm:h-[calc(100vh-100px)] bg-white py-[50px] sm:py-0 px-5 sm:px-10 lg:w-full' | ||
/> | ||
</Layout> | ||
</> | ||
) | ||
} | ||
); | ||
}; | ||
|
||
export default index | ||
export default index; |