Skip to content

Commit f0faaa7

Browse files
committed
Moved development services out of mdx to comp
1 parent 69c19f2 commit f0faaa7

File tree

2 files changed

+61
-45
lines changed

2 files changed

+61
-45
lines changed

solutions/react/react.mdx

Lines changed: 2 additions & 45 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ import ContactUsButton from '../../src/components/contactUsButton.js';
1717
import { RipplingProject } from '../../src/components/projects';
1818
import ContactForm from '../../src/components/contactForm.js';
1919
import Libraries from '../../src/components/libraries.js';
20+
import DevelopmentServices from '../../src/components/developmentServices.js';
2021

2122
<Box my={2}>
2223
<Title>React JS Development Company</Title>
@@ -54,51 +55,7 @@ We have used the best libraries to develop React JS applications. Some of them a
5455
> For more info , take a look at our [blogs](/category/react) and [open source contributions](/open-source-contributions).
5556
5657
---
57-
58-
<Box>
59-
<Title>Reliable ReactJS Development Services</Title>
60-
</Box>
61-
62-
<Title
63-
fontSize={[2, 'desktop.2']}
64-
fontWeight="bold"
65-
borderWidth={0}
66-
mt={2}
67-
>
68-
Fast, modular and Bug free React JS development service
69-
</Title>
70-
We develop your application with atleast 30% faster than other development companies.
71-
72-
<Title
73-
fontSize={[2, 'desktop.2']}
74-
fontWeight="bold"
75-
borderWidth={0}
76-
mt={2}
77-
>
78-
Javascript Lovers
79-
</Title>
80-
We specialise in servicing modern JavaScript based web & mobile applications. We are experts in developing applications in React.js, AngularJS, Node.js
81-
82-
<Title
83-
fontSize={[2, 'desktop.2']}
84-
fontWeight="bold"
85-
borderWidth={0}
86-
mt={2}
87-
>
88-
Expert React JS Developers
89-
</Title>
90-
We have a set of skilful React JS developers who are updated with current React Eco System
91-
92-
<Title
93-
fontSize={[2, 'desktop.2']}
94-
fontWeight="bold"
95-
borderWidth={0}
96-
mt={2}
97-
>
98-
Best React JS development Service history
99-
</Title>
100-
We have 15+ React projects delivered to clients in quick time
101-
58+
<DevelopmentServices />
10259

10360
## Contact Us
10461
<ContactForm referrer="/react-js-development/" />

src/components/developmentServices.js

Lines changed: 59 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,59 @@
1+
import React from 'react';
2+
import { Box, P } from 'bricks';
3+
4+
import Title from './title';
5+
6+
export default () => (
7+
<Box width={[1, 4 / 5 ]}>
8+
<Title>Reliable ReactJS Development Services</Title>
9+
<br />
10+
<br />
11+
<Title
12+
fontSize={[2, 'desktop.2']}
13+
fontWeight="bold"
14+
borderWidth={0}
15+
mt={2}
16+
>
17+
Fast, modular and Bug free React JS development service
18+
</Title>
19+
<P>
20+
We develop your application with atleast 30% faster than other development companies.
21+
</P>
22+
23+
<Title
24+
fontSize={[2, 'desktop.2']}
25+
fontWeight="bold"
26+
borderWidth={0}
27+
mt={2}
28+
>
29+
Javascript Lovers
30+
</Title>
31+
<P>
32+
We specialise in servicing modern JavaScript based web & mobile applications. We are experts in developing applications in React.js, AngularJS, Node.js
33+
</P>
34+
35+
<Title
36+
fontSize={[2, 'desktop.2']}
37+
fontWeight="bold"
38+
borderWidth={0}
39+
mt={2}
40+
>
41+
Expert React JS Developers
42+
</Title>
43+
<P>
44+
We have a set of skilful React JS developers who are updated with current React Eco System
45+
</P>
46+
47+
<Title
48+
fontSize={[2, 'desktop.2']}
49+
fontWeight="bold"
50+
borderWidth={0}
51+
mt={2}
52+
>
53+
Best React JS development Service history
54+
</Title>
55+
<P>
56+
We have 15+ React projects delivered to clients in quick time
57+
</P>
58+
</Box>
59+
);

0 commit comments

Comments
 (0)