-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
373 lines (359 loc) · 17.2 KB
/
index.html
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
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
<!DOCTYPE html>
<html lang="en" data-theme="light">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Rinterio</title>
<!-- Google Font -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Manrope:[email protected]&display=swap" rel="stylesheet">
<!-- fontawesome -->
<script src="https://kit.fontawesome.com/d7e59fe33d.js" crossorigin="anonymous"></script>
<!-- tailwind & daisyui cdn -->
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/full.min.css" rel="stylesheet" type="text/css" />
<script src="https://cdn.tailwindcss.com"></script>
<!-- font css -->
<style>
.manrope-font {
font-family: "Manrope", sans-serif;
}
.heading-secondary-lg{
font-weight: 700;
font-size: 40px;
color: #212121;
}
.heading-secondary{
font-weight: 700;
font-size: 24px;
color: #212121;
}
.pargraph-lg{
font-weight: 500;
font-size: 16px;
color: #494949;
}
.paragraph{
font-weight: 500;
font-size: 14px;
color: #494949;
}
</style>
<!-- tailwind custom styles -->
<script>
tailwind.config = {
theme: {
extend: {
colors: {
'green-accent': '#ABEE60',
'color-heading': '#212121',
'color-paragraph': '#494949'
}
}
}
}
</script>
</head>
<body class="manrope-font overflow-x-hidden">
<header class="container mx-auto">
<!-- Navbar Design -->
<nav>
<div class="navbar bg-base-100">
<div class="navbar-start">
<i class="fa-solid fa-arrow-right -rotate-45 bg-green-accent p-1.5 rounded-full"></i>
<a class="btn btn-ghost sm:text-4xl text-3xl font-extrabold text-[#212121]">Reintero</a>
</div>
<div class="navbar-center hidden lg:flex">
<ul class="menu menu-horizontal px-1 font-normal text-base text-[#737373] ">
<li><a href="https://thenahidulislam.github.io/rinterio/" class="font-extrabold text-[#494949] active:text-[#494949] active:font-extrabold">Home</a></li>
<li><a class="active:text-[#494949] active:font-extrabold">Services</a></li>
<li><a class="active:text-[#494949] active:font-extrabold">Portfolio</a></li>
<li><a class="active:text-[#494949] active:font-extrabold">Blogs</a></li>
<li><a class="active:text-[#494949] active:font-extrabold">Contact Us</a></li>
</ul>
</div>
<div class="navbar-end ">
<div class="flex items-center justify-center gap-1">
<i class="hidden sm:block fa-solid fa-magnifying-glass w-[32px] cursor-pointer"></i>
<i class="hidden sm:block fa-solid fa-cart-shopping w-[32px] cursor-pointer"></i>
<a class="hidden lg:block btn bg-green-accent rounded-full "><span class="text-xl text-[#1c1c1c] font-extrabold">Book Consult </span><i class="fa-solid fa-arrow-right -rotate-45 bg-[#1c1c1c] text-green-accent p-1.5 rounded-full"></i></a>
</div>
<div class="dropdown">
<div tabindex="0" role="button" class="btn btn-ghost bg-white border border-gray-300 rounded-full lg:hidden">
<i class="fa-solid fa-bars"></i>
</div>
<ul
tabindex="0"
class="menu menu-sm dropdown-content bg-base-100 rounded-box z-[1] mt-3 w-52 pr-2 shadow">
<li><a >Home</a></li>
<li><a>Services</a></li>
<li><a>Portfolio</a></li>
<li><a>Blogs</a></li>
<li><a>Contact Us</a></li>
</ul>
</div>
</div>
</div>
</nav>
<!-- Hero Section -->
<section class="flex flex-col justify-center items-center gap-6 mb-10">
<img src="./assets/banner.png" alt="">
<h1 class="font-extrabold text-3xl lg:text-6xl text-center w-11/12">A barn house of this design has a striking appearance</h1>
<p class="w-11/12 paragraph text-center">The barn house captivates with its blend of rustic charm and modern sophistication, featuring weathered wood, sleek metal accents, and large windows that flood the space with natural light.</p>
<a class="w-11/12 sm:w-auto btn bg-[#abef5f80] border border-[#abef5f] rounded-full"><span class="text-xl text-[#1c1c1c] font-extrabold">View Details </span><i class="fa-solid fa-arrow-right -rotate-45 bg-green-accent p-1.5 rounded-full"></i></a>
</section>
</header>
<main class="bg-gray-100 py-6 mx-auto">
<!-- About Us Section -->
<section class="container mx-auto">
<div class="">
<img class="hidden lg:block" src="./assets/Vector.png" alt="">
<div class="px-5 py-7">
<div class="flex flex-col lg:flex-row justify-center items-center gap-9 ">
<!-- leftside -->
<div class="flex flex-col items-start">
<!-- primary text -->
<div class="flex flex-col gap-3 justify-center items-center lg:items-start">
<div>
<a href="" class="bg-white py-2 px-4 rounded-full"><i class="fa-solid fa-arrow-right"></i><span class="text-base font-bold ml-1">About Us</span></a>
</div>
<h2 class="font-bold text-2xl text-color-heading text-center lg:text-5xl lg:font-extrabold lg:text-left ">We design thoughtful, <br> liveable spaces</h2>
<p class="paragraph text-center lg:text-left lg:w-4/5">The barn house captivates with its blend of rustic charm and modern sophistication, featuring weathered wood, sleek metal accents.</p>
</div>
<!-- resident & commerce -->
<div class="flex flex-col gap-4 my-4">
<div class="flex gap-4 bg-white p-3 rounded-xl">
<img src="./assets/commercial.png" alt="">
<div>
<h4 class="text-base font-extrabold">Commercial</h4>
<p class="text-base font-medium w-9/12">The barn house captivates with its blend of rustic charm and modern.</p>
</div>
</div>
<div>
<div class="flex gap-4 bg-white p-3 rounded-xl">
<img src="./assets/residential.png" alt="">
<div>
<h4 class="text-base font-extrabold">Residential</h4>
<p class="text-base font-medium w-9/12">The barn house captivates with its blend of rustic charm and modern.</p>
</div>
</div>
</div>
</div>
</div>
<!-- image -->
<div>
<img src="./assets/Rectangle.png" alt="">
</div>
</div>
</div>
</section>
<!-- Work Proccess section -->
<section class="container mx-auto mt-6">
<!-- Primary Texts -->
<div class="flex flex-col gap-3 justify-center items-center">
<div>
<a href="" class="bg-white py-2 px-4 rounded-full"><i class="fa-solid fa-arrow-right"></i><span class="text-base font-bold ml-1">How we works</span></a>
</div>
<h2 class="font-bold text-2xl text-color-heading text-center lg:text-5xl lg:font-extrabold lg:text-left ">Our Works Process</h2>
<p class="paragraph text-center lg:text-left w-4/5">The barn house captivates with its blend of rustic charm and modern sophistication, featuring weathered wood, sleek metal accents.</p>
</div>
<!-- Cards grd-->
<div class="grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 p-6 gap-4">
<!-- card 1 -->
<div class="p-7 bg-[#E7C1D3] rounded-lg">
<img src="./assets/concept.png" alt="">
<h3 class="text-lg font-extrabold text-[#1c1c1c]">Concept</h3>
<p class="text-base font-medium text-[#494949]">The barn house captivates with its blend of ustic charm and modern.</p>
</div>
<!-- card 2 -->
<div class="p-7 bg-[#EFDA6E] rounded-lg">
<img src="./assets/flow-chart.png" alt="">
<h3 class="text-lg font-extrabold text-[#1c1c1c]">Design Process</h3>
<p class="text-base font-medium text-[#494949]">The barn house captivates with its blend of ustic charm and modern.</p>
</div>
<!-- card 3 -->
<div class="p-7 bg-[#A4DAC3] rounded-lg">
<img src="./assets/vision.png" alt="">
<h3 class="text-lg font-extrabold text-[#1c1c1c]">Supervision</h3>
<p class="text-base font-medium text-[#494949]">The barn house captivates with its blend of ustic charm and modern.</p>
</div>
<!-- card 4 -->
<div class="p-7 bg-[#77AAEA] rounded-lg">
<img src="./assets/budget-planning.png" alt="">
<h3 class="text-lg font-extrabold text-[#1c1c1c]">Budget Planning</h3>
<p class="text-base font-medium text-[#494949]">The barn house captivates with its blend of ustic charm and modern.</p>
</div>
</div>
</section>
</main>
<!-- Portfolio Section -->
<section class="bg-gray-100 sm:bg-white container mx-auto ">
<!-- Primary Texts -->
<div class="flex flex-col gap-3 justify-center items-center mt-10">
<div>
<a href="" class="bg-[#ABEF5F33] py-2 px-4 rounded-full"><i class="fa-solid fa-arrow-right"></i><span class="text-base font-bold ml-1">Explore Our Latest Works</span></a>
</div>
<h2 class="font-bold text-2xl text-color-heading text-center lg:text-5xl lg:font-extrabold ">Our Latest Portfolio</h2>
<p class="paragraph text-center lg:text-left w-4/5">The barn house captivates with its blend of rustic charm and modern sophistication, featuring weathered wood, sleek metal accents.</p>
</div>
<div class="grid grid-rows-6 lg:grid-cols-4 lg:grid-rows-none gap-2 p-6 items-center justify-center">
<!-- pfolio1 -->
<div class="bg-white rounded-xl p-6 items-center row-span-2 lg:col-start-1 lg:col-span-3 lg:row-span-1 lg:flex lg:gap-4">
<img src="./assets/img1.png" alt="">
<div>
<h3 class="text-xl font-extrabold">Commercial</h3>
<p class="text-base font-medium w-10/12">The barn house captivates with its blend of rustic charm and modern. The barn house captivates with its blend of rustic charm and modern .</p>
<div>
<a class="btn bg-transparent rounded-full"><span class="text-xl text-[#1c1c1c] font-extrabold">View Details </span><i class="fa-solid fa-arrow-right -rotate-45 bg-green-accent p-1.5 rounded-full"></i></a>
</div>
</div>
</div>
<!-- pfolio2 -->
<div class="bg-white rounded-xl p-6 items-center row-span-1 lg:col-start-4 lg:col-span-1 ">
<img src="./assets/img2.png" alt="">
</div>
<!-- pfolio3 -->
<div class="bg-white rounded-xl p-6 items-center row-span-2 lg:col-start-1 lg:col-span-2 lg:row-span-1 lg:flex lg:gap-4 lg:justify-start">
<img src="./assets/img4.png" alt="">
<div>
<h3 class="text-xl font-extrabold">Commercial</h3>
<p class="text-base font-medium w-9/12">The barn house captivates with its blend of rustic charm and modern. The barn house captivates with its blend.</p>
<div>
<a class="btn bg-transparent rounded-full"><span class="text-xl text-[#1c1c1c] font-extrabold">View Details </span><i class="fa-solid fa-arrow-right -rotate-45 bg-green-accent p-1.5 rounded-full"></i></a>
</div>
</div>
</div>
<!-- pfolio4 -->
<div class="bg-white rounded-xl p-6 items-center row-span-1 lg:col-start-3 lg:col-span-1 ">
<img src="./assets/img3.png" alt="">
</div>
<!-- pfolio5 -->
<div class="bg-white rounded-xl p-6 items-center row-span-1 lg:col-start-4 lg:col-span-1">
<img src="./assets/img5.png" alt="">
</div>
</div>
</div>
</section>
<!-- Category Section -->
<section class="bg-gray-100 sm:bg-white container mx-auto ">
<!-- Primary Texts -->
<div class="flex flex-col gap-3 justify-center items-center mt-10">
<div>
<a href="" class="bg-[#ABEF5F33] py-2 px-4 rounded-full"><i class="fa-solid fa-arrow-right"></i><span class="text-base font-bold ml-1">Choose your style</span></a>
</div>
<h2 class="font-bold text-2xl text-color-heading text-center lg:text-5xl lg:font-extrabold ">Interior Design Styles</h2>
<p class="paragraph text-center lg:text-left w-4/5">The barn house captivates with its blend of rustic charm and modern sophistication, featuring weathered wood, sleek metal accents.</p>
</div>
<!-- category styles -->
<div class="mt-3 grid grid-cols-1 sm:grid-cols-2 lg:grid-cols-4 gap-4 mb-6">
<!-- cat 1 -->
<div class="w-10/12 mx-auto">
<img src="./assets//style1.jpg" class="rounded-xl cursor-pointer w-[400px] h-[250px]" alt="">
<a class="text-lg cursor-pointer font-bold">Midcentury Modern</a>
</div>
<!-- cat 2 -->
<div class="w-10/12 mx-auto">
<img src="./assets//style2.jpg" class="rounded-xl cursor-pointer w-[400px] h-[250px]" alt="">
<a class="text-lg cursor-pointer font-bold">Neo-Industrial</a>
</div>
<!-- cat 3 -->
<div class="w-10/12 mx-auto">
<img src="./assets//style3.jpg" class="rounded-xl cursor-pointer w-[400px] h-[250px]" alt="">
<a class="text-lg cursor-pointer font-bold">Traditional</a>
</div>
<!-- cat 4 -->
<div class="w-10/12 mx-auto">
<img src="./assets//style4.jpg" class="rounded-xl cursor-pointer w-[400px] h-[250px]" alt="">
<a class="text-lg cursor-pointer font-bold">Transitional</a>
</div>
<!-- cat 5 -->
<div class="w-10/12 mx-auto">
<img src="./assets//style5.jpg" class="rounded-xl cursor-pointer w-[400px] h-[250px]" alt="">
<a class="text-lg cursor-pointer font-bold">Maximalist</a>
</div>
<!-- cat 6 -->
<div class="w-10/12 mx-auto">
<img src="./assets//style6.jpg" class="rounded-xl cursor-pointer w-[400px] h-[250px]" alt="">
<a class="text-lg cursor-pointer font-bold">Farmhouse</a>
</div>
<!-- cat 7 -->
<div class="w-10/12 mx-auto">
<img src="./assets//style7.jpg" class="rounded-xl cursor-pointer w-[400px] h-[250px]" alt="">
<a class="text-lg cursor-pointer font-bold">Minimalist</a>
</div>
<!-- cat 8 -->
<div class="w-10/12 mx-auto">
<img src="./assets//style8.jpg" class="rounded-xl cursor-pointer w-[400px] h-[250px]" alt="">
<a class="text-lg cursor-pointer font-bold">Mediterranean</a>
</div>
</div>
</section>
<!-- Let's Connect -->
<section class="bg-[url('./assets/bg.jpg')] bg-cover">
<div class="py-5 lg:py-20 container mx-auto">
<!-- Primary Texts -->
<div class="flex flex-col gap-3 justify-center items-center">
<div>
<a href="" class="bg-[#ABEF5F33] py-2 px-4 rounded-full"><i class="fa-solid fa-arrow-right"></i><span class="text-base font-bold ml-1">Let's Connect</span></a>
</div>
<h2 class="font-bold text-2xl text-color-heading text-center lg:text-5xl lg:font-extrabold ">Let’s Discuss Next Project</h2>
<p class="paragraph text-center lg:text-left w-4/5">The barn house captivates with its blend of rustic charm and modern sophistication, featuring weathered wood, sleek metal accents.</p>
</div>
<!-- form -->
<div class="w-10/12 lg:w-8/12 mx-auto flex flex-col gap-2 ">
<div class="grid grid-cols-1 gap-2 mt-2 lg:grid-cols-2">
<label class="input rounded-full input-bordered flex items-center gap-2">
<input type="text" class="grow" placeholder="first name*" />
</label>
<label class="input rounded-full input-bordered flex items-center gap-2">
<input type="text" class="grow" placeholder="last name*" />
</label>
<label class="input rounded-full input-bordered flex items-center gap-2">
<input type="text" class="grow" placeholder="Phone Number*" />
</label>
<label class="input rounded-full input-bordered flex items-center gap-2">
<input type="text" class="grow" placeholder="Email*" />
</label>
</div>
<textarea
placeholder="Type your message here*"
class="textarea text-base rounded-3xl lg:rounded-3xl textarea-bordered textarea-2xl w-full max-w-8/12 h-32 lg:h-96"></textarea>
<div>
<a class="w-11/12 btn bg-[#ABEF5F] border border-[#abef5f] rounded-full"><span class="text-lg lg:text-xl text-[#1c1c1c] font-extrabold">Send Mail </span><i class="text-white fa-solid fa-arrow-right -rotate-45 bg-[#1C1C1C] p-1.5 rounded-full"></i></a>
</div>
</div>
</div>
</section>
<!-- Footer -->
<footer class="bg-[#1C1C1C]">
<div class="container mx-auto p-10 flex flex-col justify-center items-center gap-8">
<!-- logo and para -->
<div class="flex flex-col justify-center items-center ">
<div>
<i class="fa-solid fa-arrow-right -rotate-45 bg-green-accent p-1.5 rounded-full"></i>
<a class="btn btn-ghost sm:text-4xl text-3xl font-extrabold text-[#E9E9E9]">Reintero</a>
</div>
<p class="text-base font-medium text-[#737373] lg:w-6/12">
The barn house captivates with its blend of rustic charm and modern sophistication, featuring weathered wood, sleek metal accents.
</p>
</div>
<!-- menu -->
<div>
<ul class="text-base text-[#E9E9E9] flex flex-col lg:flex-row gap-2 lg:gap-28">
<li><a href="#">Home</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Portfolio</a></li>
<li><a href="#">Blogs</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<!-- Button -->
<div>
<div>
<a class="btn bg-[#ABEF5F] border border-[#abef5f] rounded-full"><span class="text-xl text-[#1c1c1c] font-extrabold">Book Consult </span><i class="text-white fa-solid fa-arrow-right -rotate-45 bg-[#1C1C1C] p-1.5 rounded-full"></i></a>
</div>
</div>
</div>
</footer>
</body>
</html>