BlogSidebar.js
6.27 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
import React from "react";
import Link from "next/link";
const BlogSidebar = () => {
return (
<>
<aside className="widget-area">
<div className="widget widget_search">
<form className="search-form">
<label>
<input
type="search"
className="search-field"
placeholder="Search..."
/>
</label>
<button type="submit">
<i className="ri-search-2-line"></i>
</button>
</form>
</div>
<div className="widget widget_enry_posts_thumb">
<h3 className="widget-title">Popular Posts</h3>
<article className="item">
<Link href="/blog/details" className="thumb">
<span
className="fullimage cover"
role="img"
style={{
backgroundImage: `url(/images/blog/blog1.jpg)`,
}}
></span>
</Link>
<div className="info">
<h4 className="title usmall">
<Link href="/blog/details">
Being The Best-Selling Smart Phone This Year
</Link>
</h4>
<span className="date">
<i className="ri-calendar-2-fill"></i> Jan 15, 2020
</span>
</div>
</article>
<article className="item">
<Link href="/blog/details" className="thumb">
<span
className="fullimage cover"
role="img"
style={{
backgroundImage: `url(/images/blog/blog2.jpg)`,
}}
></span>
</Link>
<div className="info">
<h4 className="title usmall">
<Link href="/blog/details">
Love Songs Helped Me Through Heartbreak
</Link>
</h4>
<span className="date">
<i className="ri-calendar-2-fill"></i> Jan 14, 2020
</span>
</div>
</article>
<article className="item">
<Link href="/blog/details" className="thumb">
<span
className="fullimage cover"
role="img"
style={{
backgroundImage: `url(/images/blog/blog3.jpg)`,
}}
></span>
</Link>
<div className="info">
<h4 className="title usmall">
<Link href="/blog/details">
Two Fashion Designers Busy With 2020 Winter Fashion
</Link>
</h4>
<span className="date">
<i className="ri-calendar-2-fill"></i> Jan 13, 2020
</span>
</div>
</article>
<article className="item">
<Link href="/blog/details" className="thumb">
<span
className="fullimage cover"
role="img"
style={{
backgroundImage: `url(/images/blog/blog4.jpg)`,
}}
></span>
</Link>
<div className="info">
<h4 className="title usmall">
<Link href="/blog/details">
Working in the Office is a Tradition For Women
</Link>
</h4>
<span className="date">
<i className="ri-calendar-2-fill"></i> Jan 12, 2020
</span>
</div>
</article>
</div>
<div className="widget widget_categories">
<h3 className="widget-title">Categories</h3>
<ul>
<li>
<Link href="/blog">
Business <span className="post-count">(2)</span>
</Link>
</li>
<li>
<Link href="/blog">
Privacy <span className="post-count">(5)</span>
</Link>
</li>
<li>
<Link href="/blog">
Technology <span className="post-count">(6)</span>
</Link>
</li>
<li>
<Link href="/blog">
Tips <span className="post-count">(2)</span>
</Link>
</li>
<li>
<Link href="/blog">
Uncategorized <span className="post-count">(1)</span>
</Link>
</li>
<li>
<Link href="/blog">
Log in <span className="post-count">(1)</span>
</Link>
</li>
</ul>
</div>
<div className="widget widget_newsletter">
<h4>Subscribe To Our Newsletter</h4>
<p>Subscribe to our newsletter to get the new updates!</p>
<form className="newsletter-form">
<input
type="email"
className="input-newsletter"
placeholder="Enter your email"
name="EMAIL"
required
/>
<button type="submit">Subscribe</button>
</form>
</div>
<div className="widget widget_tag_cloud">
<h3 className="widget-title">Tags</h3>
<div className="tagcloud">
<Link href="/blog">
Advertisement <span className="tag-link-count"> (3)</span>
</Link>
<Link href="/blog">
Business <span className="tag-link-count"> (3)</span>
</Link>
<Link href="/blog">
Life <span className="tag-link-count"> (5)</span>
</Link>
<Link href="/blog">
Lifestyle <span className="tag-link-count"> (2)</span>
</Link>
<Link href="/blog">
Fashion <span className="tag-link-count"> (2)</span>
</Link>
<Link href="/blog">
Inspiration <span className="tag-link-count"> (1)</span>
</Link>
<Link href="/blog">
Blog <span className="tag-link-count"> (1)</span>
</Link>
<Link href="/blog">
Ads <span className="tag-link-count"> (3)</span>
</Link>
</div>
</div>
</aside>
</>
);
};
export default BlogSidebar;