diff --git a/components/google.map.tsx b/components/google.map.tsx index 0498b08..e7add08 100644 --- a/components/google.map.tsx +++ b/components/google.map.tsx @@ -71,7 +71,7 @@ export default function GoogleMap({ src={`https://maps.googleapis.com/maps/api/js?key=${process.env.NEXT_PUBLIC_GOOGLE_MAPS_API_KEY}&callback=initMap`} strategy="afterInteractive" /> -
+
); } diff --git a/components/nav_foot/footer.tsx b/components/nav_foot/footer.tsx index 6d6d1ab..8c78a57 100644 --- a/components/nav_foot/footer.tsx +++ b/components/nav_foot/footer.tsx @@ -14,9 +14,9 @@ import { FaLocationDot } from "react-icons/fa6"; export default function Footer() { return ( -
-
-
+
+
+
{/* logo */}
@@ -109,7 +109,7 @@ export default function Footer() {
-
+
- {/* */} -
- {/* */} - - {/* */} -
+
+
+ +
Uzbekistan , Tashkent
- {/* */} + + +
); diff --git a/components/pageParts/map.tsx b/components/pageParts/map.tsx index 5612a4b..66b6d78 100644 --- a/components/pageParts/map.tsx +++ b/components/pageParts/map.tsx @@ -7,14 +7,14 @@ import GoogleMap from "../google.map"; export default function Map() { return ( -
+
{/* map */}
{/* contact information */} -
+
</div> diff --git a/components/pageParts/partners.tsx b/components/pageParts/partners.tsx index de0ab94..624a26b 100644 --- a/components/pageParts/partners.tsx +++ b/components/pageParts/partners.tsx @@ -34,31 +34,31 @@ export default function Partners() { </div> {/* slider */} - <div className="my-20"> - <Swiper - autoplay={{ - reverseDirection: true, - delay: 2500, - disableOnInteraction: false, - }} - loop={true} - modules={[Autoplay]} - slidesPerView={4} - className="mySwiper flex items-center justify-around" - > - {images.map((item, index) => ( - <SwiperSlide key={index} className="!w-[200px] mx-10 " > - <Image - src={item} - alt="Partner images" - width={200} - height={200} - className="object-contain mx-auto max-w-[200px] h-auto" - /> - </SwiperSlide> - ))} - </Swiper> - </div> + <div className="my-20"> + <Swiper + autoplay={{ + reverseDirection: true, + delay: 2500, + disableOnInteraction: false, + }} + loop={true} + modules={[Autoplay]} + slidesPerView={4} + className="mySwiper flex items-center justify-around" + > + {images.map((item, index) => ( + <SwiperSlide key={index} className="!w-[200px] mx-10 "> + <Image + src={item} + alt="Partner images" + width={200} + height={200} + className="object-contain mx-auto max-w-[200px] h-auto" + /> + </SwiperSlide> + ))} + </Swiper> + </div> </div> ); }