-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGuide.tsx
62 lines (57 loc) · 2.21 KB
/
Guide.tsx
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
import Image from 'next/image'
import React from 'react'
const Guide = () => {
return (
<section className='flexCenter flex-col'>
<div className='padding-container max-container w-full pb-24'>
<Image src='/camp.svg' alt='camp' width={50} height={50} />
<p className='uppercase regular-18 -mt-1 mb-3 text-green-50'>
Ne jemi këtu për ju
</p>
<div className='flex flex-wrap justify-between gap-5 lg:gap-10'>
<h2 className='bold-40 lg:bold-64 xl:max-w-[390px]'>
Ju udhëheq drejt Rrugës së Lehtë
</h2>
<p className='regular-16 text-gray-30 xl:max-w-[520px]'>
Vetëm me aplikacionin tone nuk do të humbisni më rrugën përsëri,
sepse ne tashmë mbështesim hartat jashtë linje kur nuk ka lidhje
interneti në terren. Ftoni miqtë, të afërmit dhe miq të argëtohen në
shkretëtirë nëpër luginë dhe të arrijnë maja e malit
</p>
</div>
</div>
<div className='flexCenter max-container relative w-full'>
<Image
src='/boat.png'
alt='boat'
width={1440}
height={580}
className='w-full object-cover object-center 2xl:rounded-5xl'
/>
<div className='absolute flex bg-white py-8 pl-5 pr-7 gap-3 rounded-3xl border shadow-md md:left-[5%] lg:top-20'>
<Image
src='/meter.svg'
alt='meter'
width={16}
height={158}
className='h-full w-auto'
/>
<div className='flexBetween flex-col'>
<div className='flex w-full flex-col'>
<div className='flexBetween w-full'>
<p className='regular-16 text-gray-20'>Destinacioni</p>
<p className='bold-16 text-green-50'>48 min</p>
</div>
<p className='bold-20 mt-2'>Kollagjesh</p>
</div>
<div className='flex w-full flex-col'>
<p className='regular-16 text-gray-20'>Fillimi i gjurmës</p>
<h4 className='bold-20 mt-2 whitespace-nowrap'>Verri</h4>
</div>
</div>
</div>
</div>
</section>
)
}
export default Guide