File tree Expand file tree Collapse file tree 2 files changed +13
-7
lines changed Expand file tree Collapse file tree 2 files changed +13
-7
lines changed Original file line number Diff line number Diff line change @@ -628,5 +628,8 @@ const Home = (props: any) => {
628
628
) ;
629
629
} ;
630
630
631
+ export default Home ;
632
+ Home . getLayout = ( page : React . ReactNode ) => getLayout ( page ) ;
633
+
631
634
export default Home ;
632
635
Home . getLayout = ( page : React . ReactNode ) => getLayout ( page ) ;
Original file line number Diff line number Diff line change 1
- import React from 'react'
2
- import NewsletterForm from '~/components/Newsletter'
3
- import Layout from '~/components/Layout'
1
+ import React from 'react' ;
2
+ import NewsletterForm from '~/components/Newsletter' ;
3
+ import Layout from '~/components/Layout' ;
4
4
5
5
const index = ( ) => {
6
6
return (
7
7
< >
8
8
< Layout >
9
- < 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' />
9
+ < NewsletterForm
10
+ className = 'pt-[100px] bg-white text-black'
11
+ wrapperClassName = 'h-full sm:h-[calc(100vh-100px)] bg-white py-[50px] sm:py-0 px-5 sm:px-10 lg:w-full'
12
+ />
10
13
</ Layout >
11
14
</ >
12
- )
13
- }
15
+ ) ;
16
+ } ;
14
17
15
- export default index
18
+ export default index ;
You can’t perform that action at this time.
0 commit comments