Skip to content

Commit

Permalink
Unoptimized banner
Browse files Browse the repository at this point in the history
  • Loading branch information
cp-dharti-r committed Mar 12, 2024
1 parent a3ae167 commit d3efc56
Showing 1 changed file with 27 additions and 27 deletions.
54 changes: 27 additions & 27 deletions website/components/Hero/index.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
"use client";

import Image from "next/image";
import Link from "next/link";

import { Autoplay } from "swiper/modules";
import { Swiper, SwiperSlide } from "swiper/react";
Expand All @@ -22,129 +21,130 @@ const Hero = () => {
className="h-screen"
>
<SwiperSlide>
<img
<Image
src="/images/banner/1.jpg"
fill
className="h-full w-full object-cover"
alt="banner-slide-image"
loading="lazy"
unoptimized
/>
</SwiperSlide>
<SwiperSlide>
<div className="h-full w-full">
<div className="flex h-1/2 w-full">
<img
<Image
src="/images/banner/2.jpg"
width={1000}
height={500}
className="h-full w-3/4 object-cover"
alt="banner-slide-image"
loading="lazy"
unoptimized
/>
<img
<Image
src="/images/banner/3.jpg"
width={1000}
height={1000}
className="h-full w-1/4 object-cover"
alt="banner-slide-image"
loading="lazy"
unoptimized
/>
</div>
<div className="flex h-1/2 w-full">
<img
<Image
src="/images/banner/4.jpg"
width={1000}
height={1000}
className="h-full w-1/4 object-cover"
alt="banner-slide-image"
loading="lazy"
unoptimized
/>
<img
<Image
src="/images/banner/5.jpg"
width={1000}
height={1000}
className="h-full w-3/4 object-cover"
alt="banner-slide-image"
loading="lazy"
unoptimized
/>
</div>
</div>
</SwiperSlide>
<SwiperSlide>
<div className="h-full w-full">
<div className="flex h-1/2 w-full">
<img
<Image
src="/images/banner/6.jpg"
width={1000}
height={500}
className="h-full w-1/4 object-cover"
alt="banner-slide-image"
loading="lazy"
unoptimized
/>
<img
<Image
src="/images/banner/7.jpg"
width={1000}
height={1000}
className="h-full w-3/4 object-cover"
alt="banner-slide-image"
loading="lazy"
unoptimized
/>
</div>
<div className="flex h-1/2 w-full">
<img
<Image
src="/images/banner/8.jpg"
width={1000}
height={1000}
className="h-full w-1/4 object-cover"
alt="banner-slide-image"
loading="lazy"
unoptimized
/>
<img
<Image
src="/images/banner/9.jpg"
width={1000}
height={1000}
className="h-full w-3/4 object-cover"
alt="banner-slide-image"
loading="lazy"
unoptimized
/>
</div>
</div>
</SwiperSlide>
<SwiperSlide>
<div className="h-full w-full">
<div className="flex h-1/2 w-full">
<img
<Image
src="/images/banner/10.jpg"
width={1000}
height={500}
className="h-full w-3/4 object-cover"
alt="banner-slide-image"
loading="lazy"
unoptimized
/>
<img
<Image
src="/images/banner/11.jpg"
width={1000}
height={1000}
className="h-full w-1/4 object-cover"
alt="banner-slide-image"
loading="lazy"
unoptimized
/>
</div>
<div className="flex h-1/2 w-full">
<img
<Image
src="/images/banner/12.jpg"
width={1000}
height={1000}
className="h-full w-3/4 object-cover"
alt="banner-slide-image"
loading="lazy"
unoptimized
/>
<img
<Image
src="/images/banner/13.jpg"
width={1000}
height={1000}
className="h-full w-1/4 object-cover"
alt="banner-slide-image"
loading="lazy"
unoptimized
/>
</div>
</div>
Expand Down

0 comments on commit d3efc56

Please sign in to comment.