-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathfeatures1.js
More file actions
163 lines (157 loc) · 5.58 KB
/
Copy pathfeatures1.js
File metadata and controls
163 lines (157 loc) · 5.58 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
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
import React, { Fragment } from 'react'
import PropTypes from 'prop-types'
import './features1.css'
const Features1 = (props) => {
return (
<div className="features1-layout251 thq-section-padding">
<div className="features1-max-width thq-section-max-width">
<div className="thq-flex-row features1-section-title">
<div className="features1-column thq-flex-column">
<span className="thq-body-small">
{props.slogan ?? (
<Fragment>
<span className="features1-text15">
Crafting Comfort and Style
</span>
</Fragment>
)}
</span>
<h2 className="thq-heading-2 features1-text11">
{props.sectionTitle ?? (
<Fragment>
<span className="features1-text13">Features</span>
</Fragment>
)}
</h2>
</div>
<span className="thq-body-small">
{props.sectionDescription ?? (
<Fragment>
<span className="features1-text19">
Discover the unique features that set apart from the
rest.
</span>
</Fragment>
)}
</span>
</div>
<div className="features1-content1">
<div className="features1-row thq-flex-row">
<div className="features1-feature1 thq-flex-column">
<div className="features1-content2 thq-flex-column">
<h3 className="thq-heading-3">
{props.feature1Title ?? (
<Fragment>
<span className="features1-text22">
Exceptional Product Quality
</span>
</Fragment>
)}
</h3>
<span className="thq-body-small">
{props.feature1Description ?? (
<Fragment>
<span className="features1-text17">
We source only the finest materials to ensure durability
and longevity.
</span>
</Fragment>
)}
</span>
</div>
</div>
<div className="features1-feature2 thq-flex-column">
<div className="features1-content3 thq-flex-column">
<h3 className="thq-heading-3">
{props.feature2Title ?? (
<Fragment>
<span className="features1-text20">Unique Designs</span>
</Fragment>
)}
</h3>
<span className="thq-body-small">
{props.feature2Description ?? (
<Fragment>
<span className="features1-text14">
Our curated collection showcases exclusive designs that
you won't find elsewhere.
</span>
</Fragment>
)}
</span>
</div>
</div>
<div className="features1-feature3 thq-flex-column">
<div className="features1-content4 thq-flex-column">
<h3 className="thq-heading-3">
{props.feature3Title ?? (
<Fragment>
<span className="features1-text23">Special Prices</span>
</Fragment>
)}
</h3>
<span className="thq-body-small">
{props.feature3Description ?? (
<Fragment>
<span className="features1-text18">
Enjoy special pricing on our handpicked selection of
furniture and home decor items.
</span>
</Fragment>
)}
</span>
</div>
</div>
</div>
</div>
<div className="features1-actions">
<button className="thq-button-filled features1-button1">
<span className="thq-body-small">
{props.mainAction ?? (
<Fragment>
<span className="features1-text16">Shop Now</span>
</Fragment>
)}
</span>
</button>
<button className="thq-button-outline features1-button2">
<span className="thq-body-small">
{props.secondaryAction ?? (
<Fragment>
<span className="features1-text21">View Lookbook</span>
</Fragment>
)}
</span>
</button>
</div>
</div>
</div>
)
}
Features1.defaultProps = {
sectionTitle: undefined,
feature2Description: undefined,
slogan: undefined,
mainAction: undefined,
feature1Description: undefined,
feature3Description: undefined,
sectionDescription: undefined,
feature2Title: undefined,
secondaryAction: undefined,
feature1Title: undefined,
feature3Title: undefined,
}
Features1.propTypes = {
sectionTitle: PropTypes.element,
feature2Description: PropTypes.element,
slogan: PropTypes.element,
mainAction: PropTypes.element,
feature1Description: PropTypes.element,
feature3Description: PropTypes.element,
sectionDescription: PropTypes.element,
feature2Title: PropTypes.element,
secondaryAction: PropTypes.element,
feature1Title: PropTypes.element,
feature3Title: PropTypes.element,
}
export default Features1