File tree Expand file tree Collapse file tree 3 files changed +6
-24
lines changed Expand file tree Collapse file tree 3 files changed +6
-24
lines changed Original file line number Diff line number Diff line change @@ -54,9 +54,9 @@ describe('pages/index.tsx', () => {
54
54
expect ( page ) . toBeInTheDocument ( )
55
55
} )
56
56
57
- it ( 'renders Our Programs section on KIN Home page' , ( ) => {
57
+ it ( 'renders Contribute section on KIN Home page' , ( ) => {
58
58
render ( WrappedComponentWithProps ( Home , { props} ) )
59
- const project = screen . getByText ( 'Our Programs ' )
59
+ const project = screen . getByText ( 'How to use VEDA? ' )
60
60
expect ( project ) . toBeInTheDocument ( )
61
61
} )
62
62
Original file line number Diff line number Diff line change @@ -33,7 +33,7 @@ export default function ContributeSection() {
33
33
< div >
34
34
< h2 className = "flex justify-center text-3xl lg:text-4xl font-rsd-titles font-bold "
35
35
data-aos = "fade" data-aos-duration = "400" data-aos-easing = "ease-in-out" >
36
- Do You Want to Contribute ?
36
+ How to use VEDA ?
37
37
</ h2 >
38
38
< p className = "text-center text-lg mt-5" data-aos = "fade"
39
39
data-aos-delay = "100" data-aos-duration = "400" data-aos-easing = "ease-in-out" >
@@ -49,24 +49,6 @@ export default function ContributeSection() {
49
49
target = { button . contact . target }
50
50
/>
51
51
</ div >
52
- { /* <div className="flex justify-center" data-aos="fade-up" data-aos-duration="600"
53
- data-aos-delay="100"
54
- data-aos-easing="ease-in-out">
55
- <GradientBorderButton
56
- text={button.docs.label}
57
- url={button.docs.url}
58
- target={button.docs.target}
59
- />
60
- </div>
61
- <div className="flex justify-center" data-aos="fade-up" data-aos-duration="600"
62
- data-aos-delay="200"
63
- data-aos-easing="ease-in-out">
64
- <GradientBorderButton
65
- text={button.faq.label}
66
- url={button.faq.url}
67
- target={button.faq.target}
68
- />
69
- </div> */ }
70
52
</ div >
71
53
</ div >
72
54
</ section >
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ import {TopNewsProps} from '~/components/news/apiNews'
18
18
import JumboBanner from './JumboBanner'
19
19
import HomepageDivider from './HomepageDivider'
20
20
import AboutUsSection from './AboutUsSection'
21
- import OurProgramsSection from './OurProgramsSection'
21
+ // import OurProgramsSection from './OurProgramsSection'
22
22
import ContributeSection from './ContributeSection'
23
23
import TopNewsSection from './TopNewsSection'
24
24
@@ -42,9 +42,9 @@ export default function RsdHome({news}:Readonly<{news:TopNewsProps[]}>) {
42
42
{ /* Top 3 news items, ONLY if there are some */ }
43
43
< TopNewsSection news = { news } />
44
44
{ /* Our Programs Section */ }
45
- < OurProgramsSection />
45
+ { /* <OurProgramsSection /> */ }
46
46
{ /* Divider */ }
47
- < HomepageDivider />
47
+ { /* <HomepageDivider /> */ }
48
48
{ /* Contribute section */ }
49
49
< ContributeSection />
50
50
{ /* Divider */ }
You can’t perform that action at this time.
0 commit comments