Skip to content

Commit 6f682c5

Browse files
committed
Add: imports
Signed-off-by: Khusham Bansal <[email protected]>
1 parent 1ee4bf3 commit 6f682c5

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

src/components/Features-carousel/index.js

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ import { Link } from "gatsby";
44
import { IoIosArrowRoundForward } from "@react-icons/all-files/io/IoIosArrowRoundForward";
55
import { FeaturesWrapper } from "./FeaturesCarousel.style";
66
import Slider from "react-slick";
7+
import "slick-carousel/slick/slick.css";
8+
import "slick-carousel/slick/slick-theme.css";
79

810

911
const Features = ({ features, heading }) => (
@@ -56,7 +58,7 @@ const FeaturesCarousel = ({ features, heading }) => {
5658
autoplaySpeed={3500}
5759
arrows={false}
5860
dots={true}
59-
infinite= {true}
61+
infinite={true}
6062
speed="500"
6163
slidesToShow={1}
6264
slidesToScroll={1}
@@ -98,7 +100,7 @@ const Feature = ({ children, title, active, onClick, learnMoreLink, id, Element
98100
? learnMoreLink.startsWith("/")
99101
? (
100102
<Link className="learn-more-link" to={learnMoreLink}>
101-
Explore <IoIosArrowRoundForward />
103+
Explore <IoIosArrowRoundForward />
102104
</Link>
103105
)
104106
: (
@@ -108,7 +110,7 @@ const Feature = ({ children, title, active, onClick, learnMoreLink, id, Element
108110
target="_blank"
109111
rel="noopener noreferrer"
110112
>
111-
Explore <IoIosArrowRoundForward />
113+
Explore <IoIosArrowRoundForward />
112114
</a>
113115
)
114116
: null} {/* No link rendered if learnMoreLink is empty */}

0 commit comments

Comments
 (0)