Skip to content

Commit a62fcd2

Browse files
committed
Arrange demonstration complete
1 parent 8c7e5fb commit a62fcd2

File tree

5 files changed

+49
-1
lines changed

5 files changed

+49
-1
lines changed

src/App.scss

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@ body {
4141
.secondary-gradient-background {
4242
background-image: linear-gradient(90deg, #0000ff, #5757ff);
4343
}
44+
.secondary-gradient-background2 {
45+
background-image: linear-gradient(90deg, #2a2aff, #5757ff);
46+
}
4447
.primary-background {
4548
background-color: #041d34;
4649
}
@@ -75,3 +78,17 @@ body {
7578
line-height: 24px;
7679
}
7780
}
81+
82+
// BUTTONS
83+
84+
.button {
85+
border: none;
86+
outline: none;
87+
border-radius: 5px;
88+
font-size: 22px !important;
89+
background-color: #001222;
90+
91+
&:hover {
92+
background-color: #002444d2;
93+
}
94+
}

src/Pages/Home/index.jsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import React from "react";
2+
import ArrangeDemonstration from "../../components/ArrangeDemonstration/ArrangeDemonstration";
23
import Aspiring from "../../components/Aspiring/Aspiring";
34
import Hero from "../../components/Hero/Hero";
45
import Services from "../../components/Services/Services";
@@ -9,6 +10,9 @@ const index = () => {
910
<Hero />
1011
<Services />
1112
<Aspiring />
13+
14+
{/* */}
15+
<ArrangeDemonstration />
1216
</>
1317
);
1418
};
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
import React from "react";
2+
import { Link } from "react-router-dom";
3+
import "./ArrangeDemonstration.scss";
4+
5+
const ArrangeDemonstration = () => {
6+
return (
7+
<>
8+
<section className="arrange-demonstration py-5 secondary-gradient-background2">
9+
<div className="py-sm-3">
10+
<h2 className="heading white fw-bold mb-4">
11+
Arrange a demonstration
12+
</h2>
13+
<h3 className="sub-heading white pt-3 pb-4">
14+
Are you interested to know how our awesome technologies work?
15+
</h3>
16+
<Link to="/coming-soon">
17+
<button className="button white px-5 py-3 d-block mx-auto">
18+
Let's Talk
19+
</button>
20+
</Link>
21+
</div>
22+
</section>
23+
</>
24+
);
25+
};
26+
27+
export default ArrangeDemonstration;

src/components/ArrangeDemonstration/ArrangeDemonstration.scss

Whitespace-only changes.

src/components/Services/Services.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ const Services = () => {
1818
</div>
1919
{serviceData?.map(({ title, description, icon }, index) => {
2020
return (
21-
<div className="col-12 col-md-6 mt-5">
21+
<div key={index} className="col-12 col-md-6 mt-5">
2222
<div className="cards background-white position-relative p-3 p-sm-5">
2323
<div className="position-absolute card-icon secondary-gradient-background white">
2424
{icon}

0 commit comments

Comments
 (0)