Skip to content

Commit 2288834

Browse files
main file
Signed-off-by: Rajesh-Nagarajan-11 <rajeshnagarajan36@gmail.com>
1 parent c50aa9a commit 2288834

1 file changed

Lines changed: 30 additions & 0 deletions

File tree

src/sections/Solutions/index.js

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import React from "react";
2+
import { Container } from "../../reusecore/Layout";
3+
import MinimizeComplexitySection from "./minimize-complexity-section";
4+
import BannerSection from "./solutions-banner";
5+
import IssuesSection from "./solutions-issues";
6+
import SolutionsWrapper from "./solutions.style";
7+
import ManageProcedures from "./manage-procedures";
8+
import OrganizeDeployments from "./organize-deployments";
9+
import Review from "./review";
10+
import QASection from "./qa-section";
11+
import WhatsNext from "./whats-next";
12+
13+
const Solutions = (props) => {
14+
return (
15+
<SolutionsWrapper>
16+
<Container>
17+
<BannerSection />
18+
<IssuesSection />
19+
<MinimizeComplexitySection />
20+
<ManageProcedures />
21+
<OrganizeDeployments/>
22+
<Review/>
23+
<QASection/>
24+
<WhatsNext/>
25+
</Container>
26+
</SolutionsWrapper>
27+
);
28+
};
29+
30+
export default Solutions;

0 commit comments

Comments
 (0)