template
This commit is contained in:
@@ -0,0 +1,2 @@
|
||||
node_modules/
|
||||
.nuxt/
|
||||
+158
-14
@@ -2,22 +2,25 @@
|
||||
@tailwind components;
|
||||
@tailwind utilities;
|
||||
@font-face {
|
||||
font-family: 'Iransans';
|
||||
src: url('/public/fonts/IRANSansWebFaNum.woff2');
|
||||
font-family: "Iransans";
|
||||
src: url("/public/fonts/IRANSansWebFaNum.woff2");
|
||||
}
|
||||
body{
|
||||
html{
|
||||
overflow-x: hidden;
|
||||
}
|
||||
body {
|
||||
direction: rtl;
|
||||
font-family: 'Iransans';
|
||||
background-color: #FAF6F9;
|
||||
font-family: "Iransans";
|
||||
background-color: #faf6f9;
|
||||
max-width: 100vw;
|
||||
overflow-x: hidden !important;
|
||||
}
|
||||
.animate{
|
||||
-webkit-animation:spin 0.5s linear infinite;
|
||||
-moz-animation:spin 0.5s linear infinite;
|
||||
animation:spin 0.3s linear infinite;
|
||||
.animate {
|
||||
-webkit-animation: spin 0.5s linear infinite;
|
||||
-moz-animation: spin 0.5s linear infinite;
|
||||
animation: spin 0.3s linear infinite;
|
||||
}
|
||||
.line2{
|
||||
.line2 {
|
||||
stroke: black;
|
||||
}
|
||||
.header {
|
||||
@@ -29,13 +32,154 @@ body{
|
||||
background-size: cover;
|
||||
}
|
||||
@media (min-width: 1024px) {
|
||||
.header{
|
||||
.header {
|
||||
background-position: center;
|
||||
}
|
||||
}
|
||||
.test{
|
||||
background-image: linear-gradient(to bottom, rgba(255,255,255,0), #FAF6F9 70%);
|
||||
}
|
||||
.test {
|
||||
background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #faf6f9 70%);
|
||||
width: 100%;
|
||||
height: 150px;
|
||||
margin-top: -130px;
|
||||
}
|
||||
.fade {
|
||||
background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), #ffffff 70%);
|
||||
width: 100%;
|
||||
height: 150px;
|
||||
margin-top: -130px;
|
||||
}
|
||||
|
||||
.imgWrap {
|
||||
position: relative;
|
||||
margin: 0% auto;
|
||||
padding-bottom: 39%;
|
||||
}
|
||||
.ourStory{
|
||||
background-image: url('/public/images/aboutBg.jpg');
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100% 155%;
|
||||
background-position-y: -10vw;
|
||||
|
||||
}
|
||||
@media (max-width: 768px) {
|
||||
.ourStory{
|
||||
background-image: url('/public/images/aboutBg.jpg');
|
||||
background-repeat: no-repeat;
|
||||
background-size: 180% 155%;
|
||||
background-position-x: -35vw;
|
||||
|
||||
}
|
||||
.imgWrap {
|
||||
padding-bottom: 5vw !important;
|
||||
}
|
||||
.imgWrap > div {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 44% !important;
|
||||
height: 58vw !important;
|
||||
float: left;
|
||||
background-image: url("/public/images/aboutBg.jpg");
|
||||
background-size: auto 190%;
|
||||
object-fit: cover;
|
||||
background-position: center;
|
||||
justify-content: center;
|
||||
justify-items: center;
|
||||
margin-top: 5vw !important;
|
||||
|
||||
/* background-repeat: no-repeat; */
|
||||
}
|
||||
.imgWrap .two {
|
||||
left: -22% !important;
|
||||
background-position: 18% 50%;
|
||||
}
|
||||
.imgWrap .three {
|
||||
left: 26% !important;
|
||||
background-position: 50% 50%;
|
||||
}
|
||||
.imgWrap .four {
|
||||
left: 74% !important;
|
||||
background-position: 85% 50%;
|
||||
}
|
||||
}
|
||||
.imgWrap > div {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
width: 23%;
|
||||
height: 92%;
|
||||
float: left;
|
||||
background-image: url("/public/images/aboutBg.jpg");
|
||||
background-size: auto 190%;
|
||||
object-fit: cover;
|
||||
background-position: center;
|
||||
justify-content: center;
|
||||
justify-items: center;
|
||||
margin-top: 5vw;
|
||||
/* background-repeat: no-repeat; */
|
||||
}
|
||||
|
||||
.imgWrap > div > div {
|
||||
height: 99.7%;
|
||||
width: 99.3%;
|
||||
border-color: white;
|
||||
}
|
||||
.imgWrap .one {
|
||||
left: -11.5%;
|
||||
background-position: -13% 50%;
|
||||
}
|
||||
.imgWrap .two {
|
||||
left: 13.5%;
|
||||
background-position: 18% 50%;
|
||||
}
|
||||
.imgWrap .three {
|
||||
left: 38.5%;
|
||||
background-position: 50% 50%;
|
||||
}
|
||||
.imgWrap .four {
|
||||
left: 63.5%;
|
||||
background-position: 85% 50%;
|
||||
}
|
||||
.imgWrap .five {
|
||||
left: 89.5%;
|
||||
background-position: 111% 50%;
|
||||
}
|
||||
.imgWrap .left {
|
||||
left: 0;
|
||||
background-position: 3% 0;
|
||||
}
|
||||
.imgWrap .center {
|
||||
left: 34.83%;
|
||||
background-position: -97% 0;
|
||||
}
|
||||
.imgWrap .right {
|
||||
left: 69.66%;
|
||||
background-position: -197% 0;
|
||||
}
|
||||
.imgWrap > div:before {
|
||||
content: "";
|
||||
position: absolute;
|
||||
top: 0;
|
||||
right: 100%;
|
||||
width: 10%;
|
||||
height: 100%;
|
||||
background: inherit;
|
||||
transform-origin: 100% 50%;
|
||||
transform: rotateY(-90deg);
|
||||
}
|
||||
|
||||
.imgWrap .left:before {
|
||||
background-position: 0% 0;
|
||||
}
|
||||
.imgWrap .center:before {
|
||||
background-position: -1001.3% 0;
|
||||
}
|
||||
.imgWrap .right:before {
|
||||
background-position: -2001.4% 0;
|
||||
}
|
||||
|
||||
.contact{
|
||||
background-image: url('/public/images/aboutBg.jpg');
|
||||
background-image: url('/public/images/aboutBg.jpg');
|
||||
background-repeat: no-repeat;
|
||||
background-size: 100% 185%;
|
||||
background-position-y: -16vw;
|
||||
}
|
||||
Generated
+6
@@ -8,6 +8,7 @@
|
||||
"hasInstallScript": true,
|
||||
"dependencies": {
|
||||
"gsap": "^3.12.5",
|
||||
"leaflet": "^1.9.4",
|
||||
"nuxt": "^3.11.2",
|
||||
"vue": "^3.4.21",
|
||||
"vue-router": "^4.3.0"
|
||||
@@ -6846,6 +6847,11 @@
|
||||
"safe-buffer": "~5.1.0"
|
||||
}
|
||||
},
|
||||
"node_modules/leaflet": {
|
||||
"version": "1.9.4",
|
||||
"resolved": "https://registry.npmjs.org/leaflet/-/leaflet-1.9.4.tgz",
|
||||
"integrity": "sha512-nxS1ynzJOmOlHp+iL3FyWqK89GtNL8U8rvlMOsQdTTssxZwCXh8N2NB3GDQOL+YR3XnWyZAxwQixURb+FA74PA=="
|
||||
},
|
||||
"node_modules/lilconfig": {
|
||||
"version": "3.1.1",
|
||||
"resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.1.1.tgz",
|
||||
|
||||
@@ -11,6 +11,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"gsap": "^3.12.5",
|
||||
"leaflet": "^1.9.4",
|
||||
"nuxt": "^3.11.2",
|
||||
"vue": "^3.4.21",
|
||||
"vue-router": "^4.3.0"
|
||||
|
||||
+443
@@ -0,0 +1,443 @@
|
||||
<template>
|
||||
<div class="h-[68vw] md:h-[45.938vw]">
|
||||
<div class="imgWrap bg-white">
|
||||
<div class="one rounded-[500px] hidden md:flex">
|
||||
<div class="border-[1vw] rounded-[500px]"></div>
|
||||
</div>
|
||||
<div class="two rounded-[500px]">
|
||||
<div class="border-[4vw] md:border-[1vw] rounded-[500px]"></div>
|
||||
</div>
|
||||
<div class="three rounded-[500px]">
|
||||
<div
|
||||
class="border-[4vw] md:border-[1vw] rounded-[500px] flex flex-col justify-center items-center"
|
||||
>
|
||||
<p class="-mt-[8vw] md:mt-0 text-[5.277vw] absolute md:relative md:text-[2.656vw] text-[#383E43]">
|
||||
We
|
||||
<span class="font-bold"> Believe </span>
|
||||
in the
|
||||
</p>
|
||||
<p class="text-[5.277vw] absolute md:relative mt-[8vw] md:mt-0 md:text-[2.656vw] text-[#383E43] font-bold">Destination</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="four rounded-[500px]">
|
||||
<div class="border-[4vw] md:border-[1vw] rounded-[500px]"></div>
|
||||
</div>
|
||||
<div class="five rounded-[500px] hidden md:flex">
|
||||
<div class="border-[1vw] rounded-[500px]"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="ourStory h-[94.615vw] lg:h-[42.938vw] flex items-center text-[#383E43]">
|
||||
<div class="w-[60%] md:w-[37%] ms-[4vw] md:ms-[23.594vw]">
|
||||
<h2 class="-mt-[2vw] md:mt-[10vw] lg:mt-0 text-[4.544vw] lg:text-[1.481vw] font-bold">داستان ما</h2>
|
||||
<p class="text-[3.19vw] lg:text-[0.833vw] leading-[4.5vw] lg:leading-[1.563vw] mt-[2vw]">
|
||||
لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ، و با استفاده
|
||||
از طراحان گرافیک است، چاپگرها و متون بلکه روزنامه و مجله در ستون و
|
||||
سطرآنچنان که لازم است، و برای شرایط فعلی تکنولوژی مورد نیاز، و کاربردهای
|
||||
|
||||
</p>
|
||||
<p class="hidden lg:block text-[3.19vw] lg:text-[0.833vw] leading-[1.563vw] mt-[2vw]">
|
||||
رسد و زمان مورد نیاز شامل حروفچینی دستاوردهای اصلی، و جوابگوی سوالات
|
||||
پیوسته اهل دنیای موجود طراحی اساسا مورد استفاده قرار گیرد.لورم ایپسوم
|
||||
متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ، و با استفاده از طراحان
|
||||
گرافیک است، چاپگرها و متون بلکه روزنامه و مجله در ستون و سطرآنچنان که
|
||||
لازم اس
|
||||
متنوع با هدف بهبود ابزارهای کاربردی می باشد، کتابهای زیادی در شصت و سه
|
||||
درصد گذشته حال و آینده، شناخت فراوان جامعه و متخصصان را می طلبد، تا با
|
||||
نرم افزارها شناخت بیشتری را برای طراحان رایانه ای علی الخصوص طراحان
|
||||
خلاقی، و فرهنگ پیشرو در زبان فارسی ایجاد کرد. در این صورت می توان امید
|
||||
داشت که تمام و دشواری موجود در ارائه راهکارها، و شرایط سخت تایپ به پایانت، و برای شرایط فعلی تکنولوژی مورد نیاز، و کاربردهای متنوع با هدف
|
||||
بهبود ابزارهای کاربردی می باشد، کتابهای زیادی در شصت و سه درصد گذشته حال
|
||||
و آینده، شناخت فراوان جامعه و متخصصان را می طلبد، تا با نرم افزارها
|
||||
شناخت بیشتری را برای طراحان رایانه ای علی الخصوص طراحان خلاقی، و فرهنگ
|
||||
پیشرو در زبان فارسی ایجاد کرد، در این صورت می توان امید داشت که تمام و
|
||||
دشواری موجود در ارائه راهکارها، و شرایط سخت تایپ به پایان رسد و زمان
|
||||
مورد نیاز شامل حروفچینی دستاوردهای اصلی، و جوابگوی سوالات پیوسته اهل
|
||||
دنیای موجود طراحی اساسا مورد استفاده قرار گیرد.
|
||||
|
||||
</p>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
<div class="fade"></div>
|
||||
|
||||
<div class="h-auto md:h-[45.938vw] flex justify-center py-[20vw] md:py-[4.5vw]">
|
||||
<div class="w-[85%] md:w-[81.04%] flex flex-col md:flex-row justify-between">
|
||||
<div class="text-[#383E43] w-full md:w-[72.35%]">
|
||||
<h1 class="text-[#A62186] text-[7.277vw] md:text-[2.604vw] font-bold">SHINAN</h1>
|
||||
<h2 class="text-[5.751vw] md:text-[2.188vw] mt-[5vw] md:mt-[1.5vw]">
|
||||
فروشگاه جوانه پیشتاز در عرضه محصولات سالم و طبیعی
|
||||
</h2>
|
||||
<p class="text-[3.59vw] md:text-[1.186vw] mt-[5vw] md:mt-[0.8vw] w-full md:w-[75%]">
|
||||
ما در فروشگاه جوانه سعی بر آن داریم تا سبدی از بهترین محصولات سالم و
|
||||
طبیعی و ارگانیک ، رژیمی و بدون گلوتن را فراهم آوریم تا بتوانیم تجربه
|
||||
خریدی سالم و اطمینان بخشی را برای شما محیا کنیم.
|
||||
</p>
|
||||
<div class="flex flex-col flex-col-reverse md:flex-row mt-[2.8vw] w-full md:w-[27.396vw]">
|
||||
<svg
|
||||
class="rotate-90 md:rotate-0 w-[8vw] h-[8vw] md:w-[1.2vw] md:h-[3.188vw] mt-[0.7vw]"
|
||||
viewBox="0 0 10 42"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<circle cx="5" cy="5" r="4.5" fill="#383E43" stroke="#383E43" />
|
||||
<circle cx="5" cy="21" r="4.5" stroke="#383E43" />
|
||||
<circle cx="5" cy="37" r="4.5" stroke="#383E43" />
|
||||
</svg>
|
||||
<div class="bg-white p-[8vw] md:p-[1.5vw] ms-[1vw] rounded-[1.302vw]">
|
||||
<p class="text-[4.544vw] md:text-[1.335vw]">آدرس</p>
|
||||
<p class="text-[3.19vw] md:text-[0.833vw] mt-[5vw] leading-[5vw] md:leading-[1.563vw]">
|
||||
لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با
|
||||
استفاده از طراحان گرافیک است چاپگرها و متون بلکه روزنامه و مجله در
|
||||
ستون و سطرآنچنان که لازم است
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="w-full md:w-[35%] rounded-[1.302vw]">
|
||||
<div id="map"></div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<div class="contact h-auto md:h-[36.771vw] flex items-center justify-center md:justify-start py-[2vw] md:py-0">
|
||||
<div
|
||||
class="my-[2vw] md:my-0 bg-white h-[71.67%] w-[90%] md:w-[52.031vw] rounded-[1.302vw] ms-0 md:ms-[5.3vw] p-[8vw] md:p-[2.6vw]"
|
||||
>
|
||||
<img
|
||||
src="/public/images/logo.png"
|
||||
class="
|
||||
h-[11.538vw] w-[11.538vw]
|
||||
md:h-[5.208vw] md:w-[5.208vw]"
|
||||
alt="logo"
|
||||
/>
|
||||
<h2 class="text-[4.038vw] md:text-[1.186vw] font-semibold my-[5vw] md:my-0 md:mt-[2.4vw]">ارتباط با ما</h2>
|
||||
<div class="flex flex-col md:flex-row justify-between items-center">
|
||||
<div class="space-y-[3vw] md:space-y-[1vw]">
|
||||
<p class="text-[3.59vw] md:text-[0.938vw]">
|
||||
آدرس :
|
||||
<span class="text-[3.19vw] md:text-[0.833vw]"
|
||||
>لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با
|
||||
استفاده
|
||||
</span>
|
||||
</p>
|
||||
<p class="text-[3.59vw] md:text-[0.938vw]">
|
||||
تلفن :
|
||||
<span class="text-[3.19vw] md:text-[0.833vw]">00000000</span>
|
||||
</p>
|
||||
<p class="text-[3.59vw] md:text-[0.938vw]">
|
||||
ایمیل :
|
||||
<span class="text-[3.19vw] md:text-[0.833vw]">javaneh@gmail.com</span>
|
||||
</p>
|
||||
<p class="text-[3.59vw] md:text-[0.938vw]">
|
||||
فکس :
|
||||
<span class="text-[3.19vw] md:text-[0.833vw]">00000000</span>
|
||||
</p>
|
||||
</div>
|
||||
<div>
|
||||
<svg
|
||||
class="hidden md:block h-[12.292vw]"
|
||||
viewBox="0 0 66 252"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<g filter="url(#filter0_d_841_15135)">
|
||||
<path
|
||||
d="M33 57.5C19.469 57.5 8.5 46.531 8.5 33C8.5 19.469 19.469 8.5 33 8.5C46.531 8.5 57.5 19.469 57.5 33C57.5 46.531 46.531 57.5 33 57.5Z"
|
||||
stroke="#A62186"
|
||||
/>
|
||||
<path
|
||||
d="M33 22.375C36.4375 22.375 36.9062 22.375 38.3125 22.375C39.5625 22.375 40.1875 22.6875 40.6562 22.8438C41.2812 23.1563 41.75 23.3125 42.2188 23.7813C42.6875 24.25 43 24.7188 43.1562 25.3438C43.3125 25.8125 43.4687 26.4375 43.625 27.6875C43.625 29.0938 43.625 29.4062 43.625 33C43.625 36.5938 43.625 36.9062 43.625 38.3125C43.625 39.5625 43.3125 40.1875 43.1562 40.6562C42.8438 41.2812 42.6875 41.75 42.2188 42.2188C41.75 42.6875 41.2812 43 40.6562 43.1562C40.1875 43.3125 39.5625 43.4687 38.3125 43.625C36.9062 43.625 36.5938 43.625 33 43.625C29.4062 43.625 29.0938 43.625 27.6875 43.625C26.4375 43.625 25.8125 43.3125 25.3438 43.1562C24.7188 42.8438 24.25 42.6875 23.7813 42.2188C23.3125 41.75 23 41.2812 22.8438 40.6562C22.6875 40.1875 22.5312 39.5625 22.375 38.3125C22.375 36.9062 22.375 36.5938 22.375 33C22.375 29.4062 22.375 29.0938 22.375 27.6875C22.375 26.4375 22.6875 25.8125 22.8438 25.3438C23.1563 24.7188 23.3125 24.25 23.7813 23.7813C24.25 23.3125 24.7188 23 25.3438 22.8438C25.8125 22.6875 26.4375 22.5312 27.6875 22.375C29.0938 22.375 29.5625 22.375 33 22.375ZM33 20.0312C29.4062 20.0312 29.0938 20.0312 27.6875 20.0312C26.2813 20.0312 25.3438 20.3438 24.5625 20.6563C23.7813 20.9688 23 21.4375 22.2188 22.2188C21.4375 23 21.125 23.625 20.6563 24.5625C20.3438 25.3438 20.1875 26.2813 20.0312 27.6875C20.0312 29.0938 20.0312 29.5625 20.0312 33C20.0312 36.5938 20.0312 36.9062 20.0312 38.3125C20.0312 39.7188 20.3438 40.6562 20.6563 41.4375C20.9688 42.2188 21.4375 43 22.2188 43.7812C23 44.5625 23.625 44.875 24.5625 45.3438C25.3438 45.6563 26.2813 45.8125 27.6875 45.9687C29.0938 45.9687 29.5625 45.9687 33 45.9687C36.4375 45.9687 36.9062 45.9687 38.3125 45.9687C39.7188 45.9687 40.6562 45.6563 41.4375 45.3438C42.2188 45.0312 43 44.5625 43.7812 43.7812C44.5625 43 44.875 42.375 45.3438 41.4375C45.6563 40.6562 45.8125 39.7188 45.9687 38.3125C45.9687 36.9062 45.9687 36.4375 45.9687 33C45.9687 29.5625 45.9687 29.0938 45.9687 27.6875C45.9687 26.2813 45.6563 25.3438 45.3438 24.5625C45.0312 23.7813 44.5625 23 43.7812 22.2188C43 21.4375 42.375 21.125 41.4375 20.6563C40.6562 20.3438 39.7188 20.1875 38.3125 20.0312C36.9062 20.0313 36.5938 20.0312 33 20.0312Z"
|
||||
fill="#A62186"
|
||||
/>
|
||||
<path
|
||||
d="M33 26.2812C29.25 26.2812 26.2812 29.25 26.2812 33C26.2812 36.75 29.25 39.7188 33 39.7188C36.75 39.7188 39.7188 36.75 39.7188 33C39.7188 29.25 36.75 26.2812 33 26.2812ZM33 37.375C30.6562 37.375 28.625 35.5 28.625 33C28.625 30.6562 30.5 28.625 33 28.625C35.3438 28.625 37.375 30.5 37.375 33C37.375 35.3438 35.3438 37.375 33 37.375Z"
|
||||
fill="#A62186"
|
||||
/>
|
||||
<path
|
||||
d="M39.875 27.6875C40.7379 27.6875 41.4375 26.9879 41.4375 26.125C41.4375 25.2621 40.7379 24.5625 39.875 24.5625C39.0121 24.5625 38.3125 25.2621 38.3125 26.125C38.3125 26.9879 39.0121 27.6875 39.875 27.6875Z"
|
||||
fill="#A62186"
|
||||
/>
|
||||
</g>
|
||||
<g filter="url(#filter1_d_841_15135)">
|
||||
<path
|
||||
d="M33 119.5C19.469 119.5 8.5 108.531 8.5 95C8.5 81.469 19.469 70.5 33 70.5C46.531 70.5 57.5 81.469 57.5 95C57.5 108.531 46.531 119.5 33 119.5Z"
|
||||
stroke="#383E43"
|
||||
/>
|
||||
<path
|
||||
fill-rule="evenodd"
|
||||
clip-rule="evenodd"
|
||||
d="M41.75 86.0938C39.4063 83.75 36.2812 82.5 33 82.5C26.125 82.5 20.5 88.125 20.5 95C20.5 97.1875 21.125 99.375 22.2188 101.25L20.5 107.5L27.0625 105.781C28.9375 106.719 30.9688 107.344 33 107.344C39.875 107.344 45.5 101.719 45.5 94.8437C45.5 91.5625 44.0938 88.4375 41.75 86.0938ZM33 105.312C31.125 105.312 29.25 104.844 27.6875 103.906L27.375 103.75L23.4687 104.844L24.5625 101.094L24.25 100.625C23.1562 98.9062 22.6875 97.0313 22.6875 95.1563C22.6875 89.5313 27.375 84.8438 33 84.8438C35.8125 84.8438 38.3125 85.9375 40.3438 87.8125C42.375 89.8437 43.3125 92.3438 43.3125 95.1563C43.3125 100.625 38.7812 105.312 33 105.312ZM38.625 97.5C38.3125 97.3438 36.75 96.5625 36.4375 96.5625C36.125 96.4062 35.9687 96.4063 35.8125 96.7188C35.6562 97.0313 35.0313 97.6562 34.875 97.9687C34.7188 98.125 34.5625 98.125 34.25 98.125C33.9375 97.9688 33 97.6562 31.75 96.5625C30.8125 95.7812 30.1875 94.6875 30.0313 94.375C29.875 94.0625 30.0313 93.9062 30.1875 93.75C30.3438 93.5938 30.5 93.4375 30.6562 93.2812C30.8125 93.125 30.8125 92.9688 30.9688 92.8125C31.125 92.6563 30.9688 92.5 30.9688 92.3438C30.9688 92.1875 30.3438 90.625 30.0313 90C29.875 89.5313 29.5625 89.5312 29.4063 89.5312C29.25 89.5312 29.0937 89.5312 28.7812 89.5312C28.625 89.5312 28.3125 89.5312 28 89.8437C27.6875 90.1562 26.9063 90.9375 26.9063 92.5C26.9063 94.0625 28 95.4688 28.1562 95.7812C28.3125 95.9375 30.3437 99.2188 33.4687 100.469C36.125 101.562 36.5938 101.25 37.2188 101.25C37.8438 101.25 39.0938 100.469 39.25 99.8438C39.5625 99.0625 39.5625 98.4375 39.4063 98.4375C39.25 97.6563 38.9375 97.6563 38.625 97.5Z"
|
||||
fill="#383E43"
|
||||
/>
|
||||
</g>
|
||||
<g filter="url(#filter2_d_841_15135)">
|
||||
<path
|
||||
d="M33 181.5C19.469 181.5 8.5 170.531 8.5 157C8.5 143.469 19.469 132.5 33 132.5C46.531 132.5 57.5 143.469 57.5 157C57.5 170.531 46.531 181.5 33 181.5Z"
|
||||
stroke="#383E43"
|
||||
/>
|
||||
<path
|
||||
d="M20.6561 156.544C27.367 153.62 31.842 151.693 34.081 150.762C40.474 148.102 41.8024 147.641 42.6682 147.625C42.8587 147.622 43.2845 147.669 43.5603 147.893C43.7932 148.082 43.8572 148.337 43.8879 148.516C43.9186 148.696 43.9567 149.104 43.9264 149.423C43.5799 153.063 42.0809 161.896 41.3183 165.973C40.9956 167.698 40.3602 168.277 39.7451 168.333C38.4082 168.456 37.3931 167.45 36.0983 166.601C34.0723 165.273 32.9276 164.446 30.961 163.15C28.6882 161.652 30.1615 160.829 31.4568 159.484C31.7958 159.132 37.6859 153.774 37.7999 153.288C37.8142 153.227 37.8274 153.001 37.6928 152.881C37.5582 152.762 37.3595 152.802 37.2162 152.835C37.0129 152.881 33.7763 155.02 27.5061 159.253C26.5874 159.884 25.7552 160.191 25.0096 160.175C24.1877 160.157 22.6066 159.71 21.4312 159.328C19.9896 158.86 18.8438 158.612 18.9436 157.816C18.9955 157.402 19.5664 156.978 20.6561 156.544Z"
|
||||
fill="#383E43"
|
||||
/>
|
||||
</g>
|
||||
<g filter="url(#filter3_d_841_15135)">
|
||||
<path
|
||||
d="M33 243.5C19.469 243.5 8.5 232.531 8.5 219C8.5 205.469 19.469 194.5 33 194.5C46.531 194.5 57.5 205.469 57.5 219C57.5 232.531 46.531 243.5 33 243.5Z"
|
||||
stroke="#383E43"
|
||||
/>
|
||||
<path
|
||||
d="M26.125 231.5H20.8125V214.781H26.125V231.5ZM23.4688 212.438C21.75 212.438 20.5 211.187 20.5 209.469C20.5 207.75 21.9063 206.5 23.4688 206.5C25.1875 206.5 26.4375 207.75 26.4375 209.469C26.4375 211.187 25.1875 212.438 23.4688 212.438ZM45.5 231.5H40.1875V222.438C40.1875 219.781 39.0937 219 37.5312 219C35.9687 219 34.4062 220.25 34.4062 222.594V231.5H29.0938V214.781H34.0937V217.125C34.5625 216.031 36.4375 214.312 39.0937 214.312C42.0625 214.312 45.1875 216.031 45.1875 221.187V231.5H45.5Z"
|
||||
fill="#383E43"
|
||||
/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter
|
||||
id="filter0_d_841_15135"
|
||||
x="0"
|
||||
y="0"
|
||||
width="66"
|
||||
height="66"
|
||||
filterUnits="userSpaceOnUse"
|
||||
color-interpolation-filters="sRGB"
|
||||
>
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix" />
|
||||
<feColorMatrix
|
||||
in="SourceAlpha"
|
||||
type="matrix"
|
||||
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
||||
result="hardAlpha"
|
||||
/>
|
||||
<feOffset />
|
||||
<feGaussianBlur stdDeviation="4" />
|
||||
<feComposite in2="hardAlpha" operator="out" />
|
||||
<feColorMatrix
|
||||
type="matrix"
|
||||
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"
|
||||
/>
|
||||
<feBlend
|
||||
mode="normal"
|
||||
in2="BackgroundImageFix"
|
||||
result="effect1_dropShadow_841_15135"
|
||||
/>
|
||||
<feBlend
|
||||
mode="normal"
|
||||
in="SourceGraphic"
|
||||
in2="effect1_dropShadow_841_15135"
|
||||
result="shape"
|
||||
/>
|
||||
</filter>
|
||||
<filter
|
||||
id="filter1_d_841_15135"
|
||||
x="0"
|
||||
y="62"
|
||||
width="66"
|
||||
height="66"
|
||||
filterUnits="userSpaceOnUse"
|
||||
color-interpolation-filters="sRGB"
|
||||
>
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix" />
|
||||
<feColorMatrix
|
||||
in="SourceAlpha"
|
||||
type="matrix"
|
||||
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
||||
result="hardAlpha"
|
||||
/>
|
||||
<feOffset />
|
||||
<feGaussianBlur stdDeviation="4" />
|
||||
<feComposite in2="hardAlpha" operator="out" />
|
||||
<feColorMatrix
|
||||
type="matrix"
|
||||
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"
|
||||
/>
|
||||
<feBlend
|
||||
mode="normal"
|
||||
in2="BackgroundImageFix"
|
||||
result="effect1_dropShadow_841_15135"
|
||||
/>
|
||||
<feBlend
|
||||
mode="normal"
|
||||
in="SourceGraphic"
|
||||
in2="effect1_dropShadow_841_15135"
|
||||
result="shape"
|
||||
/>
|
||||
</filter>
|
||||
<filter
|
||||
id="filter2_d_841_15135"
|
||||
x="0"
|
||||
y="124"
|
||||
width="66"
|
||||
height="66"
|
||||
filterUnits="userSpaceOnUse"
|
||||
color-interpolation-filters="sRGB"
|
||||
>
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix" />
|
||||
<feColorMatrix
|
||||
in="SourceAlpha"
|
||||
type="matrix"
|
||||
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
||||
result="hardAlpha"
|
||||
/>
|
||||
<feOffset />
|
||||
<feGaussianBlur stdDeviation="4" />
|
||||
<feComposite in2="hardAlpha" operator="out" />
|
||||
<feColorMatrix
|
||||
type="matrix"
|
||||
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"
|
||||
/>
|
||||
<feBlend
|
||||
mode="normal"
|
||||
in2="BackgroundImageFix"
|
||||
result="effect1_dropShadow_841_15135"
|
||||
/>
|
||||
<feBlend
|
||||
mode="normal"
|
||||
in="SourceGraphic"
|
||||
in2="effect1_dropShadow_841_15135"
|
||||
result="shape"
|
||||
/>
|
||||
</filter>
|
||||
<filter
|
||||
id="filter3_d_841_15135"
|
||||
x="0"
|
||||
y="186"
|
||||
width="66"
|
||||
height="66"
|
||||
filterUnits="userSpaceOnUse"
|
||||
color-interpolation-filters="sRGB"
|
||||
>
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix" />
|
||||
<feColorMatrix
|
||||
in="SourceAlpha"
|
||||
type="matrix"
|
||||
values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0"
|
||||
result="hardAlpha"
|
||||
/>
|
||||
<feOffset />
|
||||
<feGaussianBlur stdDeviation="4" />
|
||||
<feComposite in2="hardAlpha" operator="out" />
|
||||
<feColorMatrix
|
||||
type="matrix"
|
||||
values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"
|
||||
/>
|
||||
<feBlend
|
||||
mode="normal"
|
||||
in2="BackgroundImageFix"
|
||||
result="effect1_dropShadow_841_15135"
|
||||
/>
|
||||
<feBlend
|
||||
mode="normal"
|
||||
in="SourceGraphic"
|
||||
in2="effect1_dropShadow_841_15135"
|
||||
result="shape"
|
||||
/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
<svg
|
||||
class="block md:hidden -me-[30vw]"
|
||||
width="192" height="51" viewBox="0 0 192 51" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g filter="url(#filter0_d_1288_57729)">
|
||||
<path d="M25.5 42.5C16.1112 42.5 8.5 34.8888 8.5 25.5C8.5 16.1112 16.1112 8.5 25.5 8.5C34.8888 8.5 42.5 16.1112 42.5 25.5C42.5 34.8888 34.8888 42.5 25.5 42.5Z" stroke="#0D3F40"/>
|
||||
<path d="M25.5 18.0625C27.9062 18.0625 28.2344 18.0625 29.2188 18.0625C30.0938 18.0625 30.5312 18.2813 30.8594 18.3906C31.2969 18.6094 31.625 18.7188 31.9531 19.0469C32.2812 19.375 32.5 19.7031 32.6094 20.1406C32.7188 20.4688 32.8281 20.9063 32.9375 21.7813C32.9375 22.7656 32.9375 22.9844 32.9375 25.5C32.9375 28.0156 32.9375 28.2344 32.9375 29.2188C32.9375 30.0938 32.7188 30.5312 32.6094 30.8594C32.3906 31.2969 32.2812 31.625 31.9531 31.9531C31.625 32.2812 31.2969 32.5 30.8594 32.6094C30.5312 32.7188 30.0938 32.8281 29.2188 32.9375C28.2344 32.9375 28.0156 32.9375 25.5 32.9375C22.9844 32.9375 22.7656 32.9375 21.7813 32.9375C20.9063 32.9375 20.4688 32.7188 20.1406 32.6094C19.7031 32.3906 19.375 32.2812 19.0469 31.9531C18.7188 31.625 18.5 31.2969 18.3906 30.8594C18.2813 30.5312 18.1719 30.0938 18.0625 29.2188C18.0625 28.2344 18.0625 28.0156 18.0625 25.5C18.0625 22.9844 18.0625 22.7656 18.0625 21.7813C18.0625 20.9063 18.2813 20.4688 18.3906 20.1406C18.6094 19.7031 18.7188 19.375 19.0469 19.0469C19.375 18.7188 19.7031 18.5 20.1406 18.3906C20.4688 18.2813 20.9063 18.1719 21.7813 18.0625C22.7656 18.0625 23.0938 18.0625 25.5 18.0625ZM25.5 16.4219C22.9844 16.4219 22.7656 16.4219 21.7813 16.4219C20.7969 16.4219 20.1406 16.6406 19.5938 16.8594C19.0469 17.0781 18.5 17.4063 17.9531 17.9531C17.4063 18.5 17.1875 18.9375 16.8594 19.5938C16.6406 20.1406 16.5312 20.7969 16.4219 21.7813C16.4219 22.7656 16.4219 23.0938 16.4219 25.5C16.4219 28.0156 16.4219 28.2344 16.4219 29.2188C16.4219 30.2031 16.6406 30.8594 16.8594 31.4062C17.0781 31.9531 17.4063 32.5 17.9531 33.0469C18.5 33.5938 18.9375 33.8125 19.5938 34.1406C20.1406 34.3594 20.7969 34.4687 21.7813 34.5781C22.7656 34.5781 23.0938 34.5781 25.5 34.5781C27.9062 34.5781 28.2344 34.5781 29.2188 34.5781C30.2031 34.5781 30.8594 34.3594 31.4062 34.1406C31.9531 33.9219 32.5 33.5938 33.0469 33.0469C33.5938 32.5 33.8125 32.0625 34.1406 31.4062C34.3594 30.8594 34.4687 30.2031 34.5781 29.2188C34.5781 28.2344 34.5781 27.9062 34.5781 25.5C34.5781 23.0938 34.5781 22.7656 34.5781 21.7813C34.5781 20.7969 34.3594 20.1406 34.1406 19.5938C33.9219 19.0469 33.5938 18.5 33.0469 17.9531C32.5 17.4063 32.0625 17.1875 31.4062 16.8594C30.8594 16.6406 30.2031 16.5312 29.2188 16.4219C28.2344 16.4219 28.0156 16.4219 25.5 16.4219Z" fill="#0D3F40"/>
|
||||
<path d="M25.5 20.7969C22.875 20.7969 20.7969 22.875 20.7969 25.5C20.7969 28.125 22.875 30.2031 25.5 30.2031C28.125 30.2031 30.2031 28.125 30.2031 25.5C30.2031 22.875 28.125 20.7969 25.5 20.7969ZM25.5 28.5625C23.8594 28.5625 22.4375 27.25 22.4375 25.5C22.4375 23.8594 23.75 22.4375 25.5 22.4375C27.1406 22.4375 28.5625 23.75 28.5625 25.5C28.5625 27.1406 27.1406 28.5625 25.5 28.5625Z" fill="#0D3F40"/>
|
||||
<path d="M30.3125 21.7813C30.9166 21.7813 31.4062 21.2916 31.4062 20.6875C31.4062 20.0834 30.9166 19.5938 30.3125 19.5938C29.7084 19.5938 29.2188 20.0834 29.2188 20.6875C29.2188 21.2916 29.7084 21.7813 30.3125 21.7813Z" fill="#0D3F40"/>
|
||||
</g>
|
||||
<g filter="url(#filter1_d_1288_57729)">
|
||||
<path d="M72.5 42.5C63.1112 42.5 55.5 34.8888 55.5 25.5C55.5 16.1112 63.1112 8.5 72.5 8.5C81.8888 8.5 89.5 16.1112 89.5 25.5C89.5 34.8888 81.8888 42.5 72.5 42.5Z" stroke="#383E43"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M78.625 19.2656C76.9844 17.625 74.7969 16.75 72.5 16.75C67.6875 16.75 63.75 20.6875 63.75 25.5C63.75 27.0312 64.1875 28.5625 64.9531 29.875L63.75 34.25L68.3438 33.0469C69.6563 33.7031 71.0781 34.1406 72.5 34.1406C77.3125 34.1406 81.25 30.2031 81.25 25.3906C81.25 23.0937 80.2656 20.9062 78.625 19.2656ZM72.5 32.7188C71.1875 32.7188 69.875 32.3906 68.7813 31.7344L68.5625 31.625L65.8281 32.3906L66.5938 29.7656L66.375 29.4375C65.6094 28.2344 65.2812 26.9219 65.2812 25.6094C65.2812 21.6719 68.5625 18.3906 72.5 18.3906C74.4688 18.3906 76.2188 19.1562 77.6406 20.4687C79.0625 21.8906 79.7188 23.6406 79.7188 25.6094C79.7188 29.4375 76.5469 32.7188 72.5 32.7188ZM76.4375 27.25C76.2188 27.1406 75.125 26.5938 74.9063 26.5938C74.6875 26.4844 74.5781 26.4844 74.4687 26.7031C74.3594 26.9219 73.9219 27.3594 73.8125 27.5781C73.7031 27.6875 73.5937 27.6875 73.375 27.6875C73.1562 27.5781 72.5 27.3594 71.625 26.5938C70.9688 26.0469 70.5313 25.2812 70.4219 25.0625C70.3125 24.8438 70.4219 24.7344 70.5313 24.625C70.6406 24.5156 70.75 24.4062 70.8594 24.2969C70.9688 24.1875 70.9688 24.0781 71.0781 23.9688C71.1875 23.8594 71.0781 23.75 71.0781 23.6406C71.0781 23.5312 70.6406 22.4375 70.4219 22C70.3125 21.6719 70.0938 21.6719 69.9844 21.6719C69.875 21.6719 69.7656 21.6719 69.5469 21.6719C69.4375 21.6719 69.2187 21.6719 69 21.8906C68.7812 22.1094 68.2344 22.6562 68.2344 23.75C68.2344 24.8438 69 25.8281 69.1094 26.0469C69.2187 26.1562 70.6406 28.4531 72.8281 29.3281C74.6875 30.0938 75.0156 29.875 75.4531 29.875C75.8906 29.875 76.7656 29.3281 76.875 28.8906C77.0938 28.3438 77.0938 27.9063 76.9844 27.9063C76.875 27.3594 76.6563 27.3594 76.4375 27.25Z" fill="#383E43"/>
|
||||
</g>
|
||||
<g filter="url(#filter2_d_1288_57729)">
|
||||
<path d="M119.5 42.5C110.111 42.5 102.5 34.8888 102.5 25.5C102.5 16.1112 110.111 8.5 119.5 8.5C128.889 8.5 136.5 16.1112 136.5 25.5C136.5 34.8888 128.889 42.5 119.5 42.5Z" stroke="#383E43"/>
|
||||
<path d="M110.859 25.1809C115.557 23.1343 118.689 21.785 120.257 21.1331C124.732 19.2717 125.662 18.9484 126.268 18.9376C126.401 18.9354 126.699 18.9684 126.892 19.1251C127.055 19.2573 127.1 19.436 127.122 19.5615C127.143 19.6869 127.17 19.9726 127.148 20.1958C126.906 22.7439 125.857 28.9273 125.323 31.7811C125.097 32.9887 124.652 33.3936 124.222 33.4332C123.286 33.5193 122.575 32.8147 121.669 32.2206C120.251 31.2909 119.449 30.7122 118.073 29.805C116.482 28.7566 117.513 28.1803 118.42 27.2386C118.657 26.9922 122.78 23.2419 122.86 22.9017C122.87 22.8592 122.879 22.7006 122.785 22.6168C122.691 22.5331 122.552 22.5617 122.451 22.5845C122.309 22.6168 120.043 24.1143 115.654 27.0771C115.011 27.5187 114.429 27.7338 113.907 27.7226C113.331 27.7101 112.225 27.3973 111.402 27.1298C110.393 26.8018 109.591 26.6283 109.66 26.0712C109.697 25.7811 110.096 25.4843 110.859 25.1809Z" fill="#383E43"/>
|
||||
</g>
|
||||
<g filter="url(#filter3_d_1288_57729)">
|
||||
<path d="M166.5 42.5C157.111 42.5 149.5 34.8888 149.5 25.5C149.5 16.1112 157.111 8.5 166.5 8.5C175.889 8.5 183.5 16.1112 183.5 25.5C183.5 34.8888 175.889 42.5 166.5 42.5Z" stroke="#383E43"/>
|
||||
<path d="M161.688 34.25H157.969V22.5469H161.688V34.25ZM159.828 20.9062C158.625 20.9062 157.75 20.0312 157.75 18.8281C157.75 17.625 158.734 16.75 159.828 16.75C161.031 16.75 161.906 17.625 161.906 18.8281C161.906 20.0312 161.031 20.9062 159.828 20.9062ZM175.25 34.25H171.531V27.9063C171.531 26.0469 170.766 25.5 169.672 25.5C168.578 25.5 167.484 26.375 167.484 28.0156V34.25H163.766V22.5469H167.266V24.1875C167.594 23.4219 168.906 22.2188 170.766 22.2188C172.844 22.2188 175.031 23.4219 175.031 27.0312V34.25H175.25Z" fill="#383E43"/>
|
||||
</g>
|
||||
<defs>
|
||||
<filter id="filter0_d_1288_57729" x="0" y="0" width="51" height="51" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="4"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1288_57729"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1288_57729" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter1_d_1288_57729" x="47" y="0" width="51" height="51" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="4"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1288_57729"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1288_57729" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter2_d_1288_57729" x="94" y="0" width="51" height="51" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="4"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1288_57729"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1288_57729" result="shape"/>
|
||||
</filter>
|
||||
<filter id="filter3_d_1288_57729" x="141" y="0" width="51" height="51" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
|
||||
<feFlood flood-opacity="0" result="BackgroundImageFix"/>
|
||||
<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
|
||||
<feOffset/>
|
||||
<feGaussianBlur stdDeviation="4"/>
|
||||
<feComposite in2="hardAlpha" operator="out"/>
|
||||
<feColorMatrix type="matrix" values="0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.1 0"/>
|
||||
<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_1288_57729"/>
|
||||
<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_1288_57729" result="shape"/>
|
||||
</filter>
|
||||
</defs>
|
||||
</svg>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
const { $leaflet } = useNuxtApp();
|
||||
|
||||
onMounted(() => {
|
||||
let map = $leaflet.map("map").setView([35.700105, 51.400394], 14);
|
||||
// let tiles = $leaflet.tileLayer('https://api.mapbox.com/styles/v1/{id}/tiles/{z}/{x}/{y}?access_token=pk.eyJ1IjoibWFwYm94IiwiYSI6ImNpejY4NXVycTA2emYycXBndHRqcmZ3N3gifQ.rJcFIG214AriISLbB6B5aw', {
|
||||
// maxZoom: 18,
|
||||
// attribution: 'Map data © <a href="https://www.openstreetmap.org/copyright">OpenStreetMap</a> contributors, ' +
|
||||
// 'Imagery © <a href="https://www.mapbox.com/">Mapbox</a>',
|
||||
// id: 'mapbox/streets-v11',
|
||||
// tileSize: 512,
|
||||
// zoomOffset: -1
|
||||
// }).addTo(map);
|
||||
let tiles = $leaflet
|
||||
.tileLayer("https://tile.openstreetmap.org/{z}/{x}/{y}.png", {
|
||||
maxZoom: 18,
|
||||
})
|
||||
.addTo(map);
|
||||
|
||||
let marker = $leaflet
|
||||
.marker([35.700105, 51.400394], {
|
||||
icon: $leaflet.icon({
|
||||
popupAnchor: [12, 6],
|
||||
iconUrl: "/map/marker-icon.png",
|
||||
shadowUrl: "/map/marker-shadow.png",
|
||||
}),
|
||||
})
|
||||
.addTo(map)
|
||||
.bindPopup("<b>سلام</b><br/>مااینجاییم")
|
||||
.openPopup();
|
||||
});
|
||||
</script>
|
||||
+239
@@ -0,0 +1,239 @@
|
||||
<template>
|
||||
<div
|
||||
class="flex justify-center py-[20vw] md:py-[4.5vw]"
|
||||
>
|
||||
<div
|
||||
class="w-[85%] md:w-[81.04%] flex flex-col md:flex-row justify-between"
|
||||
>
|
||||
<div class="text-[#383E43] w-full md:w-[58.35%]">
|
||||
<h1 class="text-[#A62186] text-[7.277vw] md:text-[2.604vw] font-bold">
|
||||
Honors
|
||||
</h1>
|
||||
<h2 class="text-[5.751vw] md:text-[2.188vw] mt-[5vw] md:mt-[1.5vw]">
|
||||
افتخارات شینان
|
||||
</h2>
|
||||
<p
|
||||
class="text-[3.59vw] md:text-[1.186vw] mt-[5vw] md:mt-[0.8vw] w-full md:w-[75%]"
|
||||
>
|
||||
ما در فروشگاه جوانه سعی بر آن داریم تا سبدی از بهترین محصولات سالم و
|
||||
طبیعی و ارگانیک ، رژیمی و بدون گلوتن را فراهم آوریم تا بتوانیم تجربه
|
||||
خریدی سالم و اطمینان بخشی را برای شما محیا کنیم.
|
||||
</p>
|
||||
<div
|
||||
class="flex flex-col flex-col-reverse md:flex-row mt-[2.8vw] w-full md:w-[27.396vw]"
|
||||
>
|
||||
<svg
|
||||
class="rotate-90 md:rotate-0 w-[8vw] h-[8vw] md:w-[1.2vw] md:h-[3.188vw] mt-[0.7vw]"
|
||||
viewBox="0 0 10 42"
|
||||
fill="none"
|
||||
xmlns="http://www.w3.org/2000/svg"
|
||||
>
|
||||
<circle cx="5" cy="5" r="4.5" fill="#383E43" stroke="#383E43" />
|
||||
<circle cx="5" cy="21" r="4.5" stroke="#383E43" />
|
||||
<circle cx="5" cy="37" r="4.5" stroke="#383E43" />
|
||||
</svg>
|
||||
<div class="bg-white p-[8vw] md:p-[1.5vw] ms-[1vw] rounded-[1.302vw]">
|
||||
<p class="text-[4.544vw] md:text-[1.335vw]">آدرس</p>
|
||||
<p
|
||||
class="text-[3.19vw] md:text-[0.833vw] mt-[5vw] leading-[5vw] md:leading-[1.563vw]"
|
||||
>
|
||||
لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با
|
||||
استفاده از طراحان گرافیک است چاپگرها و متون بلکه روزنامه و مجله در
|
||||
ستون و سطرآنچنان که لازم است
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="!h-[35.417vw] w-[35.417vw]">
|
||||
<img class="h-full w-full object-cover rounded-[1.302vw]" src="/public/images/honor.jpg" alt="" />
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="flex justify-center">
|
||||
<div class="grid grid-cols-3 gap-8">
|
||||
<div class="w-[26.146vw] h-[27.083vw] rounded-[1.302vw]">
|
||||
<h1 class="text-[2.188vw] text-[#383E43] font-semibold">خدمات ما</h1>
|
||||
<p class="text-[0.833vw] text-[#878787] mt-[2vw] w-[60%] leading-[1.7vw]">لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده از طراحان گرافیک است چاپگرها و متون بلکه روزنامه و مجله در ستون و سطرآنچنان که لازم است و برای شرایط فعلی تکنولوژی مورد نیاز و کاربردهای متنوع با هدف بهبود ابزارهای کاربردی می باشد کتابهای زیادی در شصت و سه درصد گذشته حال و آینده</p>
|
||||
</div>
|
||||
<div class="w-[26.146vw] h-[27.083vw] rounded-[1.302vw] bg-white">
|
||||
<div class="flex justify-between">
|
||||
<svg
|
||||
class="m-[1vw] w-[2.604vw] h-[2.604vw]"
|
||||
viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1655_12812)">
|
||||
<path d="M25.0001 29.1666H27.0834C29.3751 29.1666 31.2501 27.2916 31.2501 25V4.16663H12.5001C9.37506 4.16663 6.64591 5.89577 5.22925 8.43743" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.16675 35.4166C4.16675 38.875 6.95841 41.6666 10.4167 41.6666H12.5001C12.5001 39.375 14.3751 37.5 16.6667 37.5C18.9584 37.5 20.8334 39.375 20.8334 41.6666H29.1667C29.1667 39.375 31.0418 37.5 33.3334 37.5C35.6251 37.5 37.5001 39.375 37.5001 41.6666H39.5834C43.0418 41.6666 45.8334 38.875 45.8334 35.4166V29.1666H39.5834C38.4376 29.1666 37.5001 28.2291 37.5001 27.0833V20.8333C37.5001 19.6875 38.4376 18.75 39.5834 18.75H42.2709L38.7085 12.5208C37.9585 11.2291 36.5835 10.4166 35.0835 10.4166H31.2501V25C31.2501 27.2916 29.3751 29.1666 27.0834 29.1666H25.0001" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M16.6667 45.8333C18.9679 45.8333 20.8333 43.9679 20.8333 41.6667C20.8333 39.3655 18.9679 37.5 16.6667 37.5C14.3655 37.5 12.5 39.3655 12.5 41.6667C12.5 43.9679 14.3655 45.8333 16.6667 45.8333Z" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M33.3334 45.8333C35.6346 45.8333 37.5001 43.9679 37.5001 41.6667C37.5001 39.3655 35.6346 37.5 33.3334 37.5C31.0322 37.5 29.1667 39.3655 29.1667 41.6667C29.1667 43.9679 31.0322 45.8333 33.3334 45.8333Z" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M45.8333 25V29.1667H39.5833C38.4375 29.1667 37.5 28.2292 37.5 27.0833V20.8333C37.5 19.6875 38.4375 18.75 39.5833 18.75H42.2708L45.8333 25Z" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.16675 16.6666H16.6667" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.16675 22.9166H12.5001" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.16675 29.1666H8.33341" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1655_12812">
|
||||
<rect width="50" height="50" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
<svg
|
||||
class="w-[10.833vw] h-[7.813vw] mt-[3vw]"
|
||||
viewBox="0 0 208 150" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M88.501 85.8394C88.501 97.7843 87.4333 107.861 85.2979 116.069C83.1624 124.21 80.0928 130.817 76.0889 135.888C72.1517 140.893 67.347 144.497 61.6748 146.699C56.0693 148.901 49.7298 150.002 42.6562 150.002C35.6494 150.002 29.3099 148.901 23.6377 146.699C17.9655 144.497 13.1274 140.893 9.12354 135.888C5.11963 130.817 2.0166 124.21 -0.185547 116.069C-2.3877 107.861 -3.48877 97.7843 -3.48877 85.8394V63.6177C-3.48877 51.6727 -2.42106 41.6629 -0.285645 33.5884C1.9165 25.5138 5.01953 19.0075 9.02344 14.0693C13.0273 9.13118 17.832 5.5944 23.4375 3.45898C29.1097 1.32357 35.4492 0.255859 42.4561 0.255859C49.5296 0.255859 55.9025 1.32357 61.5747 3.45898C67.2469 5.5944 72.085 9.13118 76.0889 14.0693C80.0928 19.0075 83.1624 25.5138 85.2979 33.5884C87.4333 41.6629 88.501 51.6727 88.501 63.6177V85.8394ZM69.9829 60.5146C69.9829 52.3066 69.3823 45.3332 68.1812 39.5942C67.0467 33.8553 65.3117 29.2174 62.9761 25.6807C60.6405 22.0771 57.7376 19.4746 54.2676 17.873C50.8643 16.2715 46.9271 15.4707 42.4561 15.4707C38.0518 15.4707 34.1146 16.2715 30.6445 17.873C27.2412 19.4746 24.3717 22.0771 22.0361 25.6807C19.7673 29.2174 18.0322 33.8553 16.8311 39.5942C15.6299 45.3332 15.0293 52.3066 15.0293 60.5146V88.7422C15.0293 96.8835 15.6299 103.89 16.8311 109.763C18.0322 115.568 19.8006 120.34 22.1362 124.077C24.5386 127.814 27.4414 130.55 30.8447 132.285C34.3148 134.02 38.252 134.887 42.6562 134.887C47.194 134.887 51.1646 134.02 54.5679 132.285C57.9712 130.55 60.8073 127.814 63.0762 124.077C65.4118 120.34 67.1468 115.568 68.2812 109.763C69.4157 103.89 69.9829 96.8835 69.9829 88.7422V60.5146ZM207.717 148H112.224V134.687L159.971 81.6353C164.375 76.7638 168.012 72.4596 170.881 68.7227C173.818 64.9857 176.12 61.5824 177.788 58.5127C179.523 55.3763 180.724 52.4735 181.392 49.8042C182.059 47.0682 182.393 44.2988 182.393 41.4961C182.393 37.8926 181.825 34.5226 180.691 31.3862C179.556 28.1831 177.922 25.4137 175.786 23.0781C173.651 20.7425 171.015 18.9074 167.878 17.5728C164.742 16.1714 161.139 15.4707 157.068 15.4707C152.13 15.4707 147.826 16.2048 144.155 17.6729C140.552 19.141 137.549 21.1763 135.146 23.7788C132.744 26.3813 130.942 29.5177 129.741 33.188C128.54 36.7915 127.939 40.7954 127.939 45.1997H109.421C109.421 39.0604 110.422 33.2547 112.424 27.7827C114.493 22.3107 117.529 17.5394 121.533 13.4688C125.537 9.39811 130.509 6.19499 136.448 3.85938C142.387 1.45703 149.26 0.255859 157.068 0.255859C163.941 0.255859 170.081 1.1901 175.486 3.05859C180.958 4.92708 185.562 7.59635 189.299 11.0664C193.103 14.4697 196.006 18.5737 198.008 23.3784C200.01 28.1831 201.011 33.4883 201.011 39.2939C201.011 43.5648 200.277 47.869 198.809 52.2065C197.34 56.5441 195.372 60.8817 192.903 65.2192C190.434 69.4901 187.531 73.7609 184.194 78.0317C180.858 82.2358 177.354 86.3732 173.684 90.4438L134.546 132.885H207.717V148Z" fill="#FAF6F9"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div class="m-[1vw] mt-[5vw]">
|
||||
<h2 class="text-[1.335vw] text-[#383E43]">لورم ایپسوم</h2>
|
||||
<p class="text-[1.055vw] text-[#878787] mt-[1.3vw]">
|
||||
لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده از طراحان گرافیک است چاپگرها و متون بلکه روزنامه و مجله در ستون و سطرآنچنان که لازم است
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="w-[26.146vw] h-[27.083vw] rounded-[1.302vw] bg-white">
|
||||
<div class="flex justify-between">
|
||||
<svg
|
||||
class="m-[1vw] w-[2.604vw] h-[2.604vw]"
|
||||
viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1655_12812)">
|
||||
<path d="M25.0001 29.1666H27.0834C29.3751 29.1666 31.2501 27.2916 31.2501 25V4.16663H12.5001C9.37506 4.16663 6.64591 5.89577 5.22925 8.43743" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.16675 35.4166C4.16675 38.875 6.95841 41.6666 10.4167 41.6666H12.5001C12.5001 39.375 14.3751 37.5 16.6667 37.5C18.9584 37.5 20.8334 39.375 20.8334 41.6666H29.1667C29.1667 39.375 31.0418 37.5 33.3334 37.5C35.6251 37.5 37.5001 39.375 37.5001 41.6666H39.5834C43.0418 41.6666 45.8334 38.875 45.8334 35.4166V29.1666H39.5834C38.4376 29.1666 37.5001 28.2291 37.5001 27.0833V20.8333C37.5001 19.6875 38.4376 18.75 39.5834 18.75H42.2709L38.7085 12.5208C37.9585 11.2291 36.5835 10.4166 35.0835 10.4166H31.2501V25C31.2501 27.2916 29.3751 29.1666 27.0834 29.1666H25.0001" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M16.6667 45.8333C18.9679 45.8333 20.8333 43.9679 20.8333 41.6667C20.8333 39.3655 18.9679 37.5 16.6667 37.5C14.3655 37.5 12.5 39.3655 12.5 41.6667C12.5 43.9679 14.3655 45.8333 16.6667 45.8333Z" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M33.3334 45.8333C35.6346 45.8333 37.5001 43.9679 37.5001 41.6667C37.5001 39.3655 35.6346 37.5 33.3334 37.5C31.0322 37.5 29.1667 39.3655 29.1667 41.6667C29.1667 43.9679 31.0322 45.8333 33.3334 45.8333Z" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M45.8333 25V29.1667H39.5833C38.4375 29.1667 37.5 28.2292 37.5 27.0833V20.8333C37.5 19.6875 38.4375 18.75 39.5833 18.75H42.2708L45.8333 25Z" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.16675 16.6666H16.6667" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.16675 22.9166H12.5001" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.16675 29.1666H8.33341" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1655_12812">
|
||||
<rect width="50" height="50" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
<svg
|
||||
class="w-[10.833vw] h-[7.813vw] mt-[3vw]"
|
||||
viewBox="0 0 208 150" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M88.501 85.8394C88.501 97.7843 87.4333 107.861 85.2979 116.069C83.1624 124.21 80.0928 130.817 76.0889 135.888C72.1517 140.893 67.347 144.497 61.6748 146.699C56.0693 148.901 49.7298 150.002 42.6562 150.002C35.6494 150.002 29.3099 148.901 23.6377 146.699C17.9655 144.497 13.1274 140.893 9.12354 135.888C5.11963 130.817 2.0166 124.21 -0.185547 116.069C-2.3877 107.861 -3.48877 97.7843 -3.48877 85.8394V63.6177C-3.48877 51.6727 -2.42106 41.6629 -0.285645 33.5884C1.9165 25.5138 5.01953 19.0075 9.02344 14.0693C13.0273 9.13118 17.832 5.5944 23.4375 3.45898C29.1097 1.32357 35.4492 0.255859 42.4561 0.255859C49.5296 0.255859 55.9025 1.32357 61.5747 3.45898C67.2469 5.5944 72.085 9.13118 76.0889 14.0693C80.0928 19.0075 83.1624 25.5138 85.2979 33.5884C87.4333 41.6629 88.501 51.6727 88.501 63.6177V85.8394ZM69.9829 60.5146C69.9829 52.3066 69.3823 45.3332 68.1812 39.5942C67.0467 33.8553 65.3117 29.2174 62.9761 25.6807C60.6405 22.0771 57.7376 19.4746 54.2676 17.873C50.8643 16.2715 46.9271 15.4707 42.4561 15.4707C38.0518 15.4707 34.1146 16.2715 30.6445 17.873C27.2412 19.4746 24.3717 22.0771 22.0361 25.6807C19.7673 29.2174 18.0322 33.8553 16.8311 39.5942C15.6299 45.3332 15.0293 52.3066 15.0293 60.5146V88.7422C15.0293 96.8835 15.6299 103.89 16.8311 109.763C18.0322 115.568 19.8006 120.34 22.1362 124.077C24.5386 127.814 27.4414 130.55 30.8447 132.285C34.3148 134.02 38.252 134.887 42.6562 134.887C47.194 134.887 51.1646 134.02 54.5679 132.285C57.9712 130.55 60.8073 127.814 63.0762 124.077C65.4118 120.34 67.1468 115.568 68.2812 109.763C69.4157 103.89 69.9829 96.8835 69.9829 88.7422V60.5146ZM207.717 148H112.224V134.687L159.971 81.6353C164.375 76.7638 168.012 72.4596 170.881 68.7227C173.818 64.9857 176.12 61.5824 177.788 58.5127C179.523 55.3763 180.724 52.4735 181.392 49.8042C182.059 47.0682 182.393 44.2988 182.393 41.4961C182.393 37.8926 181.825 34.5226 180.691 31.3862C179.556 28.1831 177.922 25.4137 175.786 23.0781C173.651 20.7425 171.015 18.9074 167.878 17.5728C164.742 16.1714 161.139 15.4707 157.068 15.4707C152.13 15.4707 147.826 16.2048 144.155 17.6729C140.552 19.141 137.549 21.1763 135.146 23.7788C132.744 26.3813 130.942 29.5177 129.741 33.188C128.54 36.7915 127.939 40.7954 127.939 45.1997H109.421C109.421 39.0604 110.422 33.2547 112.424 27.7827C114.493 22.3107 117.529 17.5394 121.533 13.4688C125.537 9.39811 130.509 6.19499 136.448 3.85938C142.387 1.45703 149.26 0.255859 157.068 0.255859C163.941 0.255859 170.081 1.1901 175.486 3.05859C180.958 4.92708 185.562 7.59635 189.299 11.0664C193.103 14.4697 196.006 18.5737 198.008 23.3784C200.01 28.1831 201.011 33.4883 201.011 39.2939C201.011 43.5648 200.277 47.869 198.809 52.2065C197.34 56.5441 195.372 60.8817 192.903 65.2192C190.434 69.4901 187.531 73.7609 184.194 78.0317C180.858 82.2358 177.354 86.3732 173.684 90.4438L134.546 132.885H207.717V148Z" fill="#FAF6F9"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div class="m-[1vw] mt-[5vw]">
|
||||
<h2 class="text-[1.335vw] text-[#383E43]">لورم ایپسوم</h2>
|
||||
<p class="text-[1.055vw] text-[#878787] mt-[1.3vw]">
|
||||
لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده از طراحان گرافیک است چاپگرها و متون بلکه روزنامه و مجله در ستون و سطرآنچنان که لازم است
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="w-[26.146vw] h-[27.083vw] rounded-[1.302vw] bg-white">
|
||||
<div class="flex justify-between">
|
||||
<svg
|
||||
class="m-[1vw] w-[2.604vw] h-[2.604vw]"
|
||||
viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1655_12812)">
|
||||
<path d="M25.0001 29.1666H27.0834C29.3751 29.1666 31.2501 27.2916 31.2501 25V4.16663H12.5001C9.37506 4.16663 6.64591 5.89577 5.22925 8.43743" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.16675 35.4166C4.16675 38.875 6.95841 41.6666 10.4167 41.6666H12.5001C12.5001 39.375 14.3751 37.5 16.6667 37.5C18.9584 37.5 20.8334 39.375 20.8334 41.6666H29.1667C29.1667 39.375 31.0418 37.5 33.3334 37.5C35.6251 37.5 37.5001 39.375 37.5001 41.6666H39.5834C43.0418 41.6666 45.8334 38.875 45.8334 35.4166V29.1666H39.5834C38.4376 29.1666 37.5001 28.2291 37.5001 27.0833V20.8333C37.5001 19.6875 38.4376 18.75 39.5834 18.75H42.2709L38.7085 12.5208C37.9585 11.2291 36.5835 10.4166 35.0835 10.4166H31.2501V25C31.2501 27.2916 29.3751 29.1666 27.0834 29.1666H25.0001" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M16.6667 45.8333C18.9679 45.8333 20.8333 43.9679 20.8333 41.6667C20.8333 39.3655 18.9679 37.5 16.6667 37.5C14.3655 37.5 12.5 39.3655 12.5 41.6667C12.5 43.9679 14.3655 45.8333 16.6667 45.8333Z" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M33.3334 45.8333C35.6346 45.8333 37.5001 43.9679 37.5001 41.6667C37.5001 39.3655 35.6346 37.5 33.3334 37.5C31.0322 37.5 29.1667 39.3655 29.1667 41.6667C29.1667 43.9679 31.0322 45.8333 33.3334 45.8333Z" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M45.8333 25V29.1667H39.5833C38.4375 29.1667 37.5 28.2292 37.5 27.0833V20.8333C37.5 19.6875 38.4375 18.75 39.5833 18.75H42.2708L45.8333 25Z" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.16675 16.6666H16.6667" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.16675 22.9166H12.5001" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.16675 29.1666H8.33341" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1655_12812">
|
||||
<rect width="50" height="50" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
<svg
|
||||
class="w-[10.833vw] h-[7.813vw] mt-[3vw]"
|
||||
viewBox="0 0 208 150" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M88.501 85.8394C88.501 97.7843 87.4333 107.861 85.2979 116.069C83.1624 124.21 80.0928 130.817 76.0889 135.888C72.1517 140.893 67.347 144.497 61.6748 146.699C56.0693 148.901 49.7298 150.002 42.6562 150.002C35.6494 150.002 29.3099 148.901 23.6377 146.699C17.9655 144.497 13.1274 140.893 9.12354 135.888C5.11963 130.817 2.0166 124.21 -0.185547 116.069C-2.3877 107.861 -3.48877 97.7843 -3.48877 85.8394V63.6177C-3.48877 51.6727 -2.42106 41.6629 -0.285645 33.5884C1.9165 25.5138 5.01953 19.0075 9.02344 14.0693C13.0273 9.13118 17.832 5.5944 23.4375 3.45898C29.1097 1.32357 35.4492 0.255859 42.4561 0.255859C49.5296 0.255859 55.9025 1.32357 61.5747 3.45898C67.2469 5.5944 72.085 9.13118 76.0889 14.0693C80.0928 19.0075 83.1624 25.5138 85.2979 33.5884C87.4333 41.6629 88.501 51.6727 88.501 63.6177V85.8394ZM69.9829 60.5146C69.9829 52.3066 69.3823 45.3332 68.1812 39.5942C67.0467 33.8553 65.3117 29.2174 62.9761 25.6807C60.6405 22.0771 57.7376 19.4746 54.2676 17.873C50.8643 16.2715 46.9271 15.4707 42.4561 15.4707C38.0518 15.4707 34.1146 16.2715 30.6445 17.873C27.2412 19.4746 24.3717 22.0771 22.0361 25.6807C19.7673 29.2174 18.0322 33.8553 16.8311 39.5942C15.6299 45.3332 15.0293 52.3066 15.0293 60.5146V88.7422C15.0293 96.8835 15.6299 103.89 16.8311 109.763C18.0322 115.568 19.8006 120.34 22.1362 124.077C24.5386 127.814 27.4414 130.55 30.8447 132.285C34.3148 134.02 38.252 134.887 42.6562 134.887C47.194 134.887 51.1646 134.02 54.5679 132.285C57.9712 130.55 60.8073 127.814 63.0762 124.077C65.4118 120.34 67.1468 115.568 68.2812 109.763C69.4157 103.89 69.9829 96.8835 69.9829 88.7422V60.5146ZM207.717 148H112.224V134.687L159.971 81.6353C164.375 76.7638 168.012 72.4596 170.881 68.7227C173.818 64.9857 176.12 61.5824 177.788 58.5127C179.523 55.3763 180.724 52.4735 181.392 49.8042C182.059 47.0682 182.393 44.2988 182.393 41.4961C182.393 37.8926 181.825 34.5226 180.691 31.3862C179.556 28.1831 177.922 25.4137 175.786 23.0781C173.651 20.7425 171.015 18.9074 167.878 17.5728C164.742 16.1714 161.139 15.4707 157.068 15.4707C152.13 15.4707 147.826 16.2048 144.155 17.6729C140.552 19.141 137.549 21.1763 135.146 23.7788C132.744 26.3813 130.942 29.5177 129.741 33.188C128.54 36.7915 127.939 40.7954 127.939 45.1997H109.421C109.421 39.0604 110.422 33.2547 112.424 27.7827C114.493 22.3107 117.529 17.5394 121.533 13.4688C125.537 9.39811 130.509 6.19499 136.448 3.85938C142.387 1.45703 149.26 0.255859 157.068 0.255859C163.941 0.255859 170.081 1.1901 175.486 3.05859C180.958 4.92708 185.562 7.59635 189.299 11.0664C193.103 14.4697 196.006 18.5737 198.008 23.3784C200.01 28.1831 201.011 33.4883 201.011 39.2939C201.011 43.5648 200.277 47.869 198.809 52.2065C197.34 56.5441 195.372 60.8817 192.903 65.2192C190.434 69.4901 187.531 73.7609 184.194 78.0317C180.858 82.2358 177.354 86.3732 173.684 90.4438L134.546 132.885H207.717V148Z" fill="#FAF6F9"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div class="m-[1vw] mt-[5vw]">
|
||||
<h2 class="text-[1.335vw] text-[#383E43]">لورم ایپسوم</h2>
|
||||
<p class="text-[1.055vw] text-[#878787] mt-[1.3vw]">
|
||||
لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده از طراحان گرافیک است چاپگرها و متون بلکه روزنامه و مجله در ستون و سطرآنچنان که لازم است
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="w-[26.146vw] h-[27.083vw] rounded-[1.302vw] bg-white">
|
||||
<div class="flex justify-between">
|
||||
<svg
|
||||
class="m-[1vw] w-[2.604vw] h-[2.604vw]"
|
||||
viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1655_12812)">
|
||||
<path d="M25.0001 29.1666H27.0834C29.3751 29.1666 31.2501 27.2916 31.2501 25V4.16663H12.5001C9.37506 4.16663 6.64591 5.89577 5.22925 8.43743" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.16675 35.4166C4.16675 38.875 6.95841 41.6666 10.4167 41.6666H12.5001C12.5001 39.375 14.3751 37.5 16.6667 37.5C18.9584 37.5 20.8334 39.375 20.8334 41.6666H29.1667C29.1667 39.375 31.0418 37.5 33.3334 37.5C35.6251 37.5 37.5001 39.375 37.5001 41.6666H39.5834C43.0418 41.6666 45.8334 38.875 45.8334 35.4166V29.1666H39.5834C38.4376 29.1666 37.5001 28.2291 37.5001 27.0833V20.8333C37.5001 19.6875 38.4376 18.75 39.5834 18.75H42.2709L38.7085 12.5208C37.9585 11.2291 36.5835 10.4166 35.0835 10.4166H31.2501V25C31.2501 27.2916 29.3751 29.1666 27.0834 29.1666H25.0001" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M16.6667 45.8333C18.9679 45.8333 20.8333 43.9679 20.8333 41.6667C20.8333 39.3655 18.9679 37.5 16.6667 37.5C14.3655 37.5 12.5 39.3655 12.5 41.6667C12.5 43.9679 14.3655 45.8333 16.6667 45.8333Z" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M33.3334 45.8333C35.6346 45.8333 37.5001 43.9679 37.5001 41.6667C37.5001 39.3655 35.6346 37.5 33.3334 37.5C31.0322 37.5 29.1667 39.3655 29.1667 41.6667C29.1667 43.9679 31.0322 45.8333 33.3334 45.8333Z" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M45.8333 25V29.1667H39.5833C38.4375 29.1667 37.5 28.2292 37.5 27.0833V20.8333C37.5 19.6875 38.4375 18.75 39.5833 18.75H42.2708L45.8333 25Z" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.16675 16.6666H16.6667" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.16675 22.9166H12.5001" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.16675 29.1666H8.33341" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1655_12812">
|
||||
<rect width="50" height="50" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
<svg
|
||||
class="w-[10.833vw] h-[7.813vw] mt-[3vw]"
|
||||
viewBox="0 0 208 150" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M88.501 85.8394C88.501 97.7843 87.4333 107.861 85.2979 116.069C83.1624 124.21 80.0928 130.817 76.0889 135.888C72.1517 140.893 67.347 144.497 61.6748 146.699C56.0693 148.901 49.7298 150.002 42.6562 150.002C35.6494 150.002 29.3099 148.901 23.6377 146.699C17.9655 144.497 13.1274 140.893 9.12354 135.888C5.11963 130.817 2.0166 124.21 -0.185547 116.069C-2.3877 107.861 -3.48877 97.7843 -3.48877 85.8394V63.6177C-3.48877 51.6727 -2.42106 41.6629 -0.285645 33.5884C1.9165 25.5138 5.01953 19.0075 9.02344 14.0693C13.0273 9.13118 17.832 5.5944 23.4375 3.45898C29.1097 1.32357 35.4492 0.255859 42.4561 0.255859C49.5296 0.255859 55.9025 1.32357 61.5747 3.45898C67.2469 5.5944 72.085 9.13118 76.0889 14.0693C80.0928 19.0075 83.1624 25.5138 85.2979 33.5884C87.4333 41.6629 88.501 51.6727 88.501 63.6177V85.8394ZM69.9829 60.5146C69.9829 52.3066 69.3823 45.3332 68.1812 39.5942C67.0467 33.8553 65.3117 29.2174 62.9761 25.6807C60.6405 22.0771 57.7376 19.4746 54.2676 17.873C50.8643 16.2715 46.9271 15.4707 42.4561 15.4707C38.0518 15.4707 34.1146 16.2715 30.6445 17.873C27.2412 19.4746 24.3717 22.0771 22.0361 25.6807C19.7673 29.2174 18.0322 33.8553 16.8311 39.5942C15.6299 45.3332 15.0293 52.3066 15.0293 60.5146V88.7422C15.0293 96.8835 15.6299 103.89 16.8311 109.763C18.0322 115.568 19.8006 120.34 22.1362 124.077C24.5386 127.814 27.4414 130.55 30.8447 132.285C34.3148 134.02 38.252 134.887 42.6562 134.887C47.194 134.887 51.1646 134.02 54.5679 132.285C57.9712 130.55 60.8073 127.814 63.0762 124.077C65.4118 120.34 67.1468 115.568 68.2812 109.763C69.4157 103.89 69.9829 96.8835 69.9829 88.7422V60.5146ZM207.717 148H112.224V134.687L159.971 81.6353C164.375 76.7638 168.012 72.4596 170.881 68.7227C173.818 64.9857 176.12 61.5824 177.788 58.5127C179.523 55.3763 180.724 52.4735 181.392 49.8042C182.059 47.0682 182.393 44.2988 182.393 41.4961C182.393 37.8926 181.825 34.5226 180.691 31.3862C179.556 28.1831 177.922 25.4137 175.786 23.0781C173.651 20.7425 171.015 18.9074 167.878 17.5728C164.742 16.1714 161.139 15.4707 157.068 15.4707C152.13 15.4707 147.826 16.2048 144.155 17.6729C140.552 19.141 137.549 21.1763 135.146 23.7788C132.744 26.3813 130.942 29.5177 129.741 33.188C128.54 36.7915 127.939 40.7954 127.939 45.1997H109.421C109.421 39.0604 110.422 33.2547 112.424 27.7827C114.493 22.3107 117.529 17.5394 121.533 13.4688C125.537 9.39811 130.509 6.19499 136.448 3.85938C142.387 1.45703 149.26 0.255859 157.068 0.255859C163.941 0.255859 170.081 1.1901 175.486 3.05859C180.958 4.92708 185.562 7.59635 189.299 11.0664C193.103 14.4697 196.006 18.5737 198.008 23.3784C200.01 28.1831 201.011 33.4883 201.011 39.2939C201.011 43.5648 200.277 47.869 198.809 52.2065C197.34 56.5441 195.372 60.8817 192.903 65.2192C190.434 69.4901 187.531 73.7609 184.194 78.0317C180.858 82.2358 177.354 86.3732 173.684 90.4438L134.546 132.885H207.717V148Z" fill="#FAF6F9"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div class="m-[1vw] mt-[5vw]">
|
||||
<h2 class="text-[1.335vw] text-[#383E43]">لورم ایپسوم</h2>
|
||||
<p class="text-[1.055vw] text-[#878787] mt-[1.3vw]">
|
||||
لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده از طراحان گرافیک است چاپگرها و متون بلکه روزنامه و مجله در ستون و سطرآنچنان که لازم است
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<div class="w-[26.146vw] h-[27.083vw] rounded-[1.302vw] bg-white">
|
||||
<div class="flex justify-between">
|
||||
<svg
|
||||
class="m-[1vw] w-[2.604vw] h-[2.604vw]"
|
||||
viewBox="0 0 50 50" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1655_12812)">
|
||||
<path d="M25.0001 29.1666H27.0834C29.3751 29.1666 31.2501 27.2916 31.2501 25V4.16663H12.5001C9.37506 4.16663 6.64591 5.89577 5.22925 8.43743" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.16675 35.4166C4.16675 38.875 6.95841 41.6666 10.4167 41.6666H12.5001C12.5001 39.375 14.3751 37.5 16.6667 37.5C18.9584 37.5 20.8334 39.375 20.8334 41.6666H29.1667C29.1667 39.375 31.0418 37.5 33.3334 37.5C35.6251 37.5 37.5001 39.375 37.5001 41.6666H39.5834C43.0418 41.6666 45.8334 38.875 45.8334 35.4166V29.1666H39.5834C38.4376 29.1666 37.5001 28.2291 37.5001 27.0833V20.8333C37.5001 19.6875 38.4376 18.75 39.5834 18.75H42.2709L38.7085 12.5208C37.9585 11.2291 36.5835 10.4166 35.0835 10.4166H31.2501V25C31.2501 27.2916 29.3751 29.1666 27.0834 29.1666H25.0001" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M16.6667 45.8333C18.9679 45.8333 20.8333 43.9679 20.8333 41.6667C20.8333 39.3655 18.9679 37.5 16.6667 37.5C14.3655 37.5 12.5 39.3655 12.5 41.6667C12.5 43.9679 14.3655 45.8333 16.6667 45.8333Z" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M33.3334 45.8333C35.6346 45.8333 37.5001 43.9679 37.5001 41.6667C37.5001 39.3655 35.6346 37.5 33.3334 37.5C31.0322 37.5 29.1667 39.3655 29.1667 41.6667C29.1667 43.9679 31.0322 45.8333 33.3334 45.8333Z" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M45.8333 25V29.1667H39.5833C38.4375 29.1667 37.5 28.2292 37.5 27.0833V20.8333C37.5 19.6875 38.4375 18.75 39.5833 18.75H42.2708L45.8333 25Z" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.16675 16.6666H16.6667" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.16675 22.9166H12.5001" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
<path d="M4.16675 29.1666H8.33341" stroke="#292D32" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1655_12812">
|
||||
<rect width="50" height="50" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
||||
<svg
|
||||
class="w-[10.833vw] h-[7.813vw] mt-[3vw]"
|
||||
viewBox="0 0 208 150" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M88.501 85.8394C88.501 97.7843 87.4333 107.861 85.2979 116.069C83.1624 124.21 80.0928 130.817 76.0889 135.888C72.1517 140.893 67.347 144.497 61.6748 146.699C56.0693 148.901 49.7298 150.002 42.6562 150.002C35.6494 150.002 29.3099 148.901 23.6377 146.699C17.9655 144.497 13.1274 140.893 9.12354 135.888C5.11963 130.817 2.0166 124.21 -0.185547 116.069C-2.3877 107.861 -3.48877 97.7843 -3.48877 85.8394V63.6177C-3.48877 51.6727 -2.42106 41.6629 -0.285645 33.5884C1.9165 25.5138 5.01953 19.0075 9.02344 14.0693C13.0273 9.13118 17.832 5.5944 23.4375 3.45898C29.1097 1.32357 35.4492 0.255859 42.4561 0.255859C49.5296 0.255859 55.9025 1.32357 61.5747 3.45898C67.2469 5.5944 72.085 9.13118 76.0889 14.0693C80.0928 19.0075 83.1624 25.5138 85.2979 33.5884C87.4333 41.6629 88.501 51.6727 88.501 63.6177V85.8394ZM69.9829 60.5146C69.9829 52.3066 69.3823 45.3332 68.1812 39.5942C67.0467 33.8553 65.3117 29.2174 62.9761 25.6807C60.6405 22.0771 57.7376 19.4746 54.2676 17.873C50.8643 16.2715 46.9271 15.4707 42.4561 15.4707C38.0518 15.4707 34.1146 16.2715 30.6445 17.873C27.2412 19.4746 24.3717 22.0771 22.0361 25.6807C19.7673 29.2174 18.0322 33.8553 16.8311 39.5942C15.6299 45.3332 15.0293 52.3066 15.0293 60.5146V88.7422C15.0293 96.8835 15.6299 103.89 16.8311 109.763C18.0322 115.568 19.8006 120.34 22.1362 124.077C24.5386 127.814 27.4414 130.55 30.8447 132.285C34.3148 134.02 38.252 134.887 42.6562 134.887C47.194 134.887 51.1646 134.02 54.5679 132.285C57.9712 130.55 60.8073 127.814 63.0762 124.077C65.4118 120.34 67.1468 115.568 68.2812 109.763C69.4157 103.89 69.9829 96.8835 69.9829 88.7422V60.5146ZM207.717 148H112.224V134.687L159.971 81.6353C164.375 76.7638 168.012 72.4596 170.881 68.7227C173.818 64.9857 176.12 61.5824 177.788 58.5127C179.523 55.3763 180.724 52.4735 181.392 49.8042C182.059 47.0682 182.393 44.2988 182.393 41.4961C182.393 37.8926 181.825 34.5226 180.691 31.3862C179.556 28.1831 177.922 25.4137 175.786 23.0781C173.651 20.7425 171.015 18.9074 167.878 17.5728C164.742 16.1714 161.139 15.4707 157.068 15.4707C152.13 15.4707 147.826 16.2048 144.155 17.6729C140.552 19.141 137.549 21.1763 135.146 23.7788C132.744 26.3813 130.942 29.5177 129.741 33.188C128.54 36.7915 127.939 40.7954 127.939 45.1997H109.421C109.421 39.0604 110.422 33.2547 112.424 27.7827C114.493 22.3107 117.529 17.5394 121.533 13.4688C125.537 9.39811 130.509 6.19499 136.448 3.85938C142.387 1.45703 149.26 0.255859 157.068 0.255859C163.941 0.255859 170.081 1.1901 175.486 3.05859C180.958 4.92708 185.562 7.59635 189.299 11.0664C193.103 14.4697 196.006 18.5737 198.008 23.3784C200.01 28.1831 201.011 33.4883 201.011 39.2939C201.011 43.5648 200.277 47.869 198.809 52.2065C197.34 56.5441 195.372 60.8817 192.903 65.2192C190.434 69.4901 187.531 73.7609 184.194 78.0317C180.858 82.2358 177.354 86.3732 173.684 90.4438L134.546 132.885H207.717V148Z" fill="#FAF6F9"/>
|
||||
</svg>
|
||||
</div>
|
||||
<div class="m-[1vw] mt-[5vw]">
|
||||
<h2 class="text-[1.335vw] text-[#383E43]">لورم ایپسوم</h2>
|
||||
<p class="text-[1.055vw] text-[#878787] mt-[1.3vw]">
|
||||
لورم ایپسوم متن ساختگی با تولید سادگی نامفهوم از صنعت چاپ و با استفاده از طراحان گرافیک است چاپگرها و متون بلکه روزنامه و مجله در ستون و سطرآنچنان که لازم است
|
||||
</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
||||
<home-pageMediaSlider />
|
||||
</template>
|
||||
@@ -0,0 +1,7 @@
|
||||
import leaflet from 'leaflet/dist/leaflet.js'
|
||||
import 'leaflet/dist/leaflet.css';
|
||||
|
||||
|
||||
export default defineNuxtPlugin(nuxtApp => {
|
||||
return nuxtApp.provide('leaflet', leaflet)
|
||||
})
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 1.8 MiB |
Binary file not shown.
|
After Width: | Height: | Size: 4.4 MiB |
Binary file not shown.
|
After Width: | Height: | Size: 7.5 MiB |
Binary file not shown.
|
After Width: | Height: | Size: 1.4 KiB |
Binary file not shown.
|
After Width: | Height: | Size: 618 B |
Reference in New Issue
Block a user