Features.js
3.44 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
import React from "react";
import styled from "styled-components";
import Header from "../Components/Header";
import Footer from "../Components/Footer";
import ChatImage from "../Imgs/test.JPG";
const Main = styled.main`
display: flex;
flex-direction: column;
`;
const Section = styled.section`
padding-top: 8rem;
padding-bottom: 5rem;
max-width: none;
`;
const SectionBox = styled.div`
max-width: 80%;
margin: 0 auto;
&.image-section {
max-width: 60%;
}
`;
const DescriptionBox = styled.div`
display: flex;
flex-direction: column;
`;
const TitleBox = styled.div`
text-align: center;
font-size: 2rem;
font-weight: 600;
margin-bottom: 20px;
&.paragraph-title {
color: #3dc1d3;
text-align: left;
}
&.desc-header-title {
margin-bottom: 50px;
}
`;
const ParagraphContainer = styled.div`
display: grid;
grid-template-columns: 30% 30% 30%;
grid-column-gap: 5%;
`;
const ParagraphBox = styled.div`
display: flex;
flex-direction: column;
&:not(:last-child) {
margin-right: 20px;
}
p {
font-size: 1.2rem;
line-height: 1.5;
}
`;
const Image = styled.img`
height: 500px;
border-radius: 10px;
`;
export default () => {
return (
<>
<Header />
<Main>
<Section>
<SectionBox>
<DescriptionBox>
<TitleBox className="desc-header-title">Why Linker ?</TitleBox>
<ParagraphContainer>
<ParagraphBox>
<TitleBox className="paragraph-title">Comfortable</TitleBox>
<p>
Lorem Ipsum is simply dummy text of the printing and
typesetting industry. Lorem Ipsum has been the industry's
standard dummy text ever since the 1500s, when an unknown
printer took a galley of type and scrambled it to make a
type specimen book.
</p>
</ParagraphBox>
<ParagraphBox>
<TitleBox className="paragraph-title">Easy</TitleBox>
<p>
Lorem Ipsum is simply dummy text of the printing and
typesetting industry. Lorem Ipsum has been the industry's
standard dummy text ever since the 1500s, when an unknown
printer took a galley of type and scrambled it to make a
type specimen book.
</p>
</ParagraphBox>
<ParagraphBox>
<TitleBox className="paragraph-title">Colorful</TitleBox>
<p>
Lorem Ipsum is simply dummy text of the printing and
typesetting industry. Lorem Ipsum has been the industry's
standard dummy text ever since the 1500s, when an unknown
printer took a galley of type and scrambled it to make a
type specimen book.
</p>
</ParagraphBox>
</ParagraphContainer>
</DescriptionBox>
</SectionBox>
</Section>
<Section>
<SectionBox className="image-section">
<DescriptionBox>
<TitleBox className="desc-header-title">
Look Around Linker
</TitleBox>
<Image src={ChatImage} alt={"Back Image"} />
</DescriptionBox>
</SectionBox>
</Section>
</Main>
<Footer />
</>
);
};