Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/sections/testimonial.section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const TestimonialSection: FunctionComponent<CustomerSectionProps & { data
data,
}) => {
return (
<Flex my={12} align="center" justify="center" direction="column" id="testimonial">
<Flex my={8} align="center" justify="center" direction="column" id="testimonial">
<Heading
maxW={['260px', '360px']}
color="blue.800"
Expand Down
2 changes: 1 addition & 1 deletion src/components/sections/use-case.section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const Background = styled(Flex)`

export const UseCaseSection: FunctionComponent<{ data: any; lang: string }> = ({ data, lang }) => {
return (
<Flex direction="column" align="center" justify="flex-end" mt={[16, 16, 'initial']}>
<Flex direction="column" align="center" justify="flex-end" mt={[16, 16, 10]}>
<Flex wrap="wrap" w={['100%', '65%', '750px', '100%']} justify="center">
{data.map((useCase: any, index: number) => {
const { icon, title, description, feature_description } = useCase.primary;
Expand Down
9 changes: 6 additions & 3 deletions src/templates/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -59,14 +59,17 @@ const Index: FunctionComponent<{ data: any; pageContext: { lang } }> = ({
popupText={popup_text.text}
/>
</Container>
<UseCaseSection data={useCaseSection} lang={lang} />

<Container>
<FeatureSection data={featureSection} lang={lang} />
<TestimonialSection
title={i18n[lang].sections.testimonials}
data={testimonialSection}
/>
</Container>
<UseCaseSection data={useCaseSection} lang={lang} />

<Container>
<FeatureSection data={featureSection} lang={lang} />

<CustomerSection title={customers_heading.text} data={customerSection} />
</Container>
<Common lang={lang} />
Expand Down