Skip to content

Commit 69c19f2

Browse files
committed
Modified react development page styles
1 parent fb1f029 commit 69c19f2

File tree

2 files changed

+87
-18
lines changed

2 files changed

+87
-18
lines changed

solutions/react/react.mdx

Lines changed: 58 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ keywords:
1111
image: ./images/reactjs.png
1212
link: /react-js-development
1313
---
14-
import { Box } from 'bricks';
14+
import { Box, P } from 'bricks';
1515
import Title from '../../src/components/title.js';
16+
import ContactUsButton from '../../src/components/contactUsButton.js';
17+
import { RipplingProject } from '../../src/components/projects';
1618
import ContactForm from '../../src/components/contactForm.js';
1719
import Libraries from '../../src/components/libraries.js';
1820

@@ -26,39 +28,77 @@ We have remote teams in India, Nigeria, Ukraine.
2628

2729
We deliver high quality, well designed fronted code in **less time**.
2830

29-
## Contact Us
30-
<ContactForm referrer="/react-js-development/" />
31+
Lets talk!
32+
<Box>
33+
<ContactUsButton />
34+
</Box>
3135

3236
## Featured ReactJS project
33-
![Rippling](./images/Rippling-Hero-Image.png)
34-
### Rippling: HR Automation Powerhouse developed On ReactJS
35-
[Rippling](/rippling) is a software tool to automate a bunch of things that companies need to do while hiring and offboarding employees. Right from contract management to hardware supplies, to running the payroll and leave management – Rippling does everything.
37+
38+
<RipplingProject />
3639

3740
---
3841
[Here is our ReactJS Development process](/codebrahma-react-application)
3942

4043
We have used the best libraries to develop React JS applications. Some of them are as follows.
4144
<Libraries />
45+
<br />
46+
<br />
4247

43-
We have the right tools to develop and develop production ready React JS applications with minimum possible bundle sizes.
48+
<Box width={[1, 3 / 4]}>
49+
<P>
50+
We have the right tools to develop and develop production ready React JS applications with minimum possible bundle sizes.
51+
</P>
52+
</Box>
4453

4554
> For more info , take a look at our [blogs](/category/react) and [open source contributions](/open-source-contributions).
4655
4756
---
4857

49-
## Reliable ReactJS Development Services
50-
51-
### Fast, modular and Bug free React JS development service
52-
We develop your application with atleast 30% faster than other development companies.
53-
54-
### Javascript Lovers
55-
We specialise in servicing modern JavaScript based web & mobile applications. We are experts in developing applications in React.js, AngularJS, Node.js
58+
<Box>
59+
<Title>Reliable ReactJS Development Services</Title>
60+
</Box>
5661

57-
### Expert React JS Developers
58-
We have a set of skilful React JS developers who are updated with current React Eco System
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
59101

60-
### Best React JS development Service history
61-
We have 15+ React projects delivered to clients in quick time
62102

63103
## Contact Us
64104
<ContactForm referrer="/react-js-development/" />

src/components/projects.js

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
import React from "react"
2+
import { useStaticQuery, graphql } from "gatsby"
3+
import Project from "./project"
4+
5+
export const RipplingProject = () => {
6+
const { screenshot } = useStaticQuery(graphql`
7+
query {
8+
screenshot: file(
9+
relativePath: { eq: "screenshots/rippling_screenshot.png" }
10+
) {
11+
childImageSharp {
12+
fluid(maxWidth: 500, quality: 100) {
13+
...GatsbyImageSharpFluid
14+
presentationWidth
15+
}
16+
}
17+
}
18+
}
19+
`)
20+
21+
return (
22+
<Project
23+
title="Rippling"
24+
description="HR Automation Powerhouse developed On ReactJS. Rippling is a software tool to automate a bunch of things that companies need to do while hiring and offboarding employees. Right from contract management to hardware supplies, to running the payroll and leave management – Rippling does everything."
25+
image={screenshot.childImageSharp.fluid}
26+
link="/rippling/"
27+
/>
28+
)
29+
}

0 commit comments

Comments
 (0)