Merge branch 'Performing-task-Text-and-Image' of WrenchBoard/WrenchBoardMainSite into master
This commit is contained in:
+24
-3
@@ -29,6 +29,16 @@ body {
|
|||||||
color: #505056;
|
color: #505056;
|
||||||
overflow-x: hidden;
|
overflow-x: hidden;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
body[data-theme="dark"] {
|
||||||
|
--logo: url("../images/wrenchboard-logo-text.png") no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
body[data-theme="light"] {
|
||||||
|
--logo: url("../images/wrenchboard.png") no-repeat;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
/* ==========================================vue */
|
/* ==========================================vue */
|
||||||
* {
|
* {
|
||||||
margin: 0;
|
margin: 0;
|
||||||
@@ -1466,10 +1476,21 @@ p {
|
|||||||
letter-spacing: 2px;
|
letter-spacing: 2px;
|
||||||
text-shadow: 0px 4px 10px rgba(0,0,0,0.3);
|
text-shadow: 0px 4px 10px rgba(0,0,0,0.3);
|
||||||
}
|
}
|
||||||
.appie-title .earn-rewards{
|
/* .appie-title .earn-rewards{ */
|
||||||
border-radius: 7px;
|
/* border-radius: 7px;
|
||||||
background-color: rgb(245, 71, 71) !important;
|
background-color: rgb(245, 71, 71) !important; */
|
||||||
/* text-shadow: 2px 2px 2px #fff; */
|
/* text-shadow: 2px 2px 2px #fff; */
|
||||||
|
/* } */
|
||||||
|
|
||||||
|
.earn-rewards::before {
|
||||||
|
background: #f54747!important;
|
||||||
|
border-radius: 7px;
|
||||||
|
content: "";
|
||||||
|
height: 3.8rem;
|
||||||
|
position: absolute;
|
||||||
|
width: 17rem;
|
||||||
|
z-index: -1;
|
||||||
|
transform: translate(-10px, 5px) rotate(357deg);
|
||||||
}
|
}
|
||||||
|
|
||||||
@media only screen and (min-width: 992px) and (max-width: 1200px) {
|
@media only screen and (min-width: 992px) and (max-width: 1200px) {
|
||||||
|
|||||||
@@ -1,130 +1,96 @@
|
|||||||
import React from 'react';
|
import React from "react";
|
||||||
|
|
||||||
import Design from '../../assets/images/design.png'
|
import Design from "../../assets/images/design.png";
|
||||||
import Approach from '../../assets/images/approach.png'
|
import Approach from "../../assets/images/approach.png";
|
||||||
import Interactive from '../../assets/images/interactive.png'
|
import Interactive from "../../assets/images/interactive.png";
|
||||||
import Mobility from '../../assets/images/mobility-approach.png'
|
import Mobility from "../../assets/images/mobility-approach.png";
|
||||||
import Privacy from '../../assets/images/privacy.png'
|
import Privacy from "../../assets/images/privacy.png";
|
||||||
import Seamless from '../../assets/images/seamless.png'
|
import Seamless from "../../assets/images/seamless.png";
|
||||||
|
|
||||||
|
function ServiceItem(props) {
|
||||||
|
return (
|
||||||
|
<div
|
||||||
|
className={`appie-single-service-2 appie-single-service-about item-${props.index} mt-30 wow animated fadeInUp`}
|
||||||
|
data-wow-duration="2000ms"
|
||||||
|
data-wow-delay={`${props.delay}ms`}
|
||||||
|
style={{ cursor: "default" }}
|
||||||
|
>
|
||||||
|
<div className="icon d-flex justify-content-center align-items-center">
|
||||||
|
<img src={props.image} alt="icon" />
|
||||||
|
</div>
|
||||||
|
<h4 className="title">{props.title}</h4>
|
||||||
|
<p>{props.description}</p>
|
||||||
|
</div>
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
function AboutTextComponent() {
|
function AboutTextComponent() {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
<div className="container">
|
<div className="container">
|
||||||
<div className="row">
|
<div className="row">
|
||||||
|
<div className="row">
|
||||||
|
{servicesContent?.map(({ id, ...item }) => (
|
||||||
<div className="col-lg-4 col-md-6">
|
<div className="col-lg-4 col-md-6">
|
||||||
<div
|
<ServiceItem index={id} {...item} />
|
||||||
className="appie-single-service-2 appie-single-service-about mt-30 wow animated fadeInUp"
|
|
||||||
data-wow-duration="2000ms"
|
|
||||||
data-wow-delay="200ms"
|
|
||||||
>
|
|
||||||
<div className="icon d-flex justify-content-center align-items-center">
|
|
||||||
<img src={Design} alt="Design Icon" />
|
|
||||||
</div>
|
|
||||||
<h4 className="designed-title">Unlocking Potential</h4>
|
|
||||||
<p className="designed-description">
|
|
||||||
At WrenchBoard, we believe age should never limit one's ability to pursue their passions and generate income.
|
|
||||||
Our platform offers a variety of categories for kids to explore and turn into profitable endeavors,
|
|
||||||
fostering financial awareness and unlocking their potential for a brighter future.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<div className="col-lg-4 col-md-6">
|
|
||||||
<div
|
|
||||||
className="appie-single-service-2 appie-single-service-about item-2 mt-30 wow animated fadeInUp"
|
|
||||||
data-wow-duration="2000ms"
|
|
||||||
data-wow-delay="400ms"
|
|
||||||
>
|
|
||||||
<div className="icon d-flex justify-content-center align-items-center">
|
|
||||||
|
|
||||||
<img src={Approach} alt="Approach Icon"/>
|
|
||||||
</div>
|
|
||||||
<h4 className="designed-title">Growing Money Mindset</h4>
|
|
||||||
<p className="designed-description">
|
|
||||||
We prioritize developing a strong money mindset in Kids.
|
|
||||||
WrenchBoard offers a safe and supportive space for kids to explore their passions, learn new skills, and earn money.
|
|
||||||
By instilling the value of hard work, saving, and investing,
|
|
||||||
we aim to empower the next generation to make informed financial decisions and reach their goals.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="col-lg-4 col-md-6">
|
|
||||||
<div
|
|
||||||
className="appie-single-service-2 appie-single-service-about item-3 mt-30 wow animated fadeInUp"
|
|
||||||
data-wow-duration="2000ms"
|
|
||||||
data-wow-delay="600ms"
|
|
||||||
>
|
|
||||||
<div className="icon d-flex justify-content-center align-items-center">
|
|
||||||
|
|
||||||
<img src={Interactive} alt="Interactive Icon"/>
|
|
||||||
</div>
|
|
||||||
<h4 className="designed-title">Realtime Notifications</h4>
|
|
||||||
<p className="designed-description">
|
|
||||||
Stay up-to-date with WrenchBoard! Our platform keeps you in the loop with convenient alerts and notifications.
|
|
||||||
Choose your preferred method of receiving updates - email, text, or push notifications - and never miss a beat. </p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="col-lg-4 col-md-6">
|
|
||||||
<div
|
|
||||||
className="appie-single-service-2 appie-single-service-about item-4 mt-30 wow animated fadeInUp"
|
|
||||||
data-wow-duration="2000ms"
|
|
||||||
data-wow-delay="200ms"
|
|
||||||
>
|
|
||||||
<div className="icon d-flex justify-content-center align-items-center">
|
|
||||||
<img src={Mobility} alt="Mobility Icon" />
|
|
||||||
</div>
|
|
||||||
<h4 className="designed-title">Social Media Management</h4>
|
|
||||||
<p className="designed-description">
|
|
||||||
Teach youngsters the art of handling social media profiles for small enterprises,
|
|
||||||
cultivating essential marketing and communication abilities while also generating income.
|
|
||||||
Manage tasks, track responses, and stay connected effortlessly.
|
|
||||||
Experience a true mobile lifestyle with WrenchBoard!</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="col-lg-4 col-md-6">
|
|
||||||
<div
|
|
||||||
className="appie-single-service-2 appie-single-service-about item-5 mt-30 wow animated fadeInUp"
|
|
||||||
data-wow-duration="2000ms"
|
|
||||||
data-wow-delay="400ms"
|
|
||||||
>
|
|
||||||
<div className="icon d-flex justify-content-center align-items-center">
|
|
||||||
|
|
||||||
<img src={Seamless} alt="Seamless Icon"/>
|
|
||||||
</div>
|
|
||||||
<h4 className="designed-title">Inspiring Future Leaders</h4>
|
|
||||||
<p className="designed-description">
|
|
||||||
By offering a platform for kids to earn, learn, and contribute,
|
|
||||||
WrenchBoard is nurturing the next generation of entrepreneurs, creators, and leaders.
|
|
||||||
We're sowing the seeds of ambition and self-confidence, preparing them for a brighter future.</p>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div className="col-lg-4 col-md-6">
|
|
||||||
<div
|
|
||||||
className="appie-single-service-2 appie-single-service-about item-6 mt-30 wow animated fadeInUp"
|
|
||||||
data-wow-duration="2000ms"
|
|
||||||
data-wow-delay="600ms"
|
|
||||||
>
|
|
||||||
<div className="icon d-flex justify-content-center align-items-center">
|
|
||||||
|
|
||||||
<img src={Privacy} alt="Privacy Icon"/>
|
|
||||||
</div>
|
|
||||||
<h4 className="designed-title">Privacy</h4>
|
|
||||||
<p className="designed-description">
|
|
||||||
Your privacy matters. WrenchBoard works without data sharing, ensuring your information stays secure.
|
|
||||||
Manage tasks across platforms confidently, enjoying a unified experience that respects your privacy.</p>
|
|
||||||
</div>
|
</div>
|
||||||
|
))}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
};
|
}
|
||||||
|
|
||||||
export default AboutTextComponent;
|
export default AboutTextComponent;
|
||||||
|
|
||||||
|
const servicesContent = [
|
||||||
|
{
|
||||||
|
id: 1,
|
||||||
|
image: Design,
|
||||||
|
delay: 200,
|
||||||
|
title: "Unlocking Potential",
|
||||||
|
description:
|
||||||
|
"At WrenchBoard, we believe age should never limit one's ability to pursue their passions and generate income. Our platform offers a variety of categories for kids to explore and turn into profitable endeavors, fostering financial awareness and unlocking their potential for a brighter future.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 2,
|
||||||
|
image: Approach,
|
||||||
|
delay: 400,
|
||||||
|
title: "Growing Money Mindset",
|
||||||
|
description:
|
||||||
|
"We prioritize developing a strong money mindset in Kids. WrenchBoard offers a safe and supportive space for kids to explore their passions, learn new skills, and earn money. By instilling the value of hard work, saving, and investing, we aim to empower the next generation to make informed financial decisions and reach their goals.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 3,
|
||||||
|
image: Interactive,
|
||||||
|
delay: 600,
|
||||||
|
title: "Realtime Notifications",
|
||||||
|
description:
|
||||||
|
"Stay up-to-date with WrenchBoard! Our platform keeps you in the loop with convenient alerts and notifications. Choose your preferred method of receiving updates - email, text, or push notifications - and never miss a beat.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 4,
|
||||||
|
image: Mobility,
|
||||||
|
delay: 200,
|
||||||
|
title: "Social Media Management",
|
||||||
|
description:
|
||||||
|
"Teach youngsters the art of handling social media profiles for small enterprises, cultivating essential marketing and communication abilities while also generating income. Manage tasks, track responses, and stay connected effortlessly. Experience a true mobile lifestyle with WrenchBoard!",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 5,
|
||||||
|
image: Seamless,
|
||||||
|
delay: 400,
|
||||||
|
title: "Inspiring Future Leaders",
|
||||||
|
description:
|
||||||
|
"By offering a platform for kids to earn, learn, and contribute, WrenchBoard is nurturing the next generation of entrepreneurs, creators, and leaders. We're sowing the seeds of ambition and self-confidence, preparing them for a brighter future.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
id: 6,
|
||||||
|
image: Privacy,
|
||||||
|
delay: 600,
|
||||||
|
title: "Privacy",
|
||||||
|
description:
|
||||||
|
"Your privacy matters. WrenchBoard works without data sharing, ensuring your information stays secure. Manage tasks across platforms confidently, enjoying a unified experience that respects your privacy.",
|
||||||
|
},
|
||||||
|
];
|
||||||
|
|||||||
@@ -1,4 +1,3 @@
|
|||||||
import React from 'react';
|
|
||||||
|
|
||||||
function HeroAbout() {
|
function HeroAbout() {
|
||||||
return (
|
return (
|
||||||
@@ -11,9 +10,6 @@ function HeroAbout() {
|
|||||||
<h2 className="title">Our team is here to support you.</h2>
|
<h2 className="title">Our team is here to support you.</h2>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
<section className="appie-about-page-area">
|
<section className="appie-about-page-area">
|
||||||
<div className="container">
|
<div className="container">
|
||||||
<div className="row">
|
<div className="row">
|
||||||
@@ -28,12 +24,14 @@ function HeroAbout() {
|
|||||||
We believe that earning should go hand in hand with learning. As kids complete projects and earn, they also acquire essential life skills such as financial literacy, time management, and effective communication. WrenchBoard isn't just about making money; it's about fostering holistic growth.
|
We believe that earning should go hand in hand with learning. As kids complete projects and earn, they also acquire essential life skills such as financial literacy, time management, and effective communication. WrenchBoard isn't just about making money; it's about fostering holistic growth.
|
||||||
<p>Learn more at <a href={process.env.REACT_APP_DASH_URL}>www.WrenchBoard.com</a></p>
|
<p>Learn more at <a href={process.env.REACT_APP_DASH_URL}>www.WrenchBoard.com</a></p>
|
||||||
</p>
|
</p>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,7 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import AboutTextComponent from '../AboutText/AboutText';
|
import AboutTextComponent from '../AboutText/AboutText';
|
||||||
|
|
||||||
|
|
||||||
function ServicesAbout() {
|
function ServicesAbout() {
|
||||||
return (
|
return (
|
||||||
<>
|
<>
|
||||||
@@ -11,11 +10,10 @@ function ServicesAbout() {
|
|||||||
<div className="col-12 col-lg-8">
|
<div className="col-12 col-lg-8">
|
||||||
<div className="appie-section-title">
|
<div className="appie-section-title">
|
||||||
<h3 className="appie-title">We’re driven by your values</h3>
|
<h3 className="appie-title">We’re driven by your values</h3>
|
||||||
{/*<p>The app provides design and digital marketing. </p>*/}
|
{/* <p>{servicesContent.subTitle}</p> */}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</>
|
</>
|
||||||
|
|||||||
@@ -67,7 +67,13 @@ function HeroHomeOne() {
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
<div
|
||||||
|
className="thumb-2 wow animated fadeInRight"
|
||||||
|
data-wow-duration="2000ms"
|
||||||
|
data-wow-delay="600ms"
|
||||||
|
>
|
||||||
|
<img src={heroThumbTwo} alt="" />
|
||||||
|
</div>
|
||||||
</section>
|
</section>
|
||||||
</>
|
</>
|
||||||
);
|
);
|
||||||
|
|||||||
@@ -6,7 +6,12 @@ import IconFour from '../../assets/images/icon/reward.png';
|
|||||||
|
|
||||||
function ServiceItem({ icon, title, description, index }) {
|
function ServiceItem({ icon, title, description, index }) {
|
||||||
return (
|
return (
|
||||||
<div className="appie-single-service text-center mt-30 wow animated fadeInUp" data-wow-duration="2000ms" data-wow-delay={`${200 * (index + 1)}ms`} style={{ cursor: "default" }}>
|
<div
|
||||||
|
className="appie-single-service text-center mt-30 wow animated fadeInUp"
|
||||||
|
data-wow-duration="2000ms"
|
||||||
|
data-wow-delay={`${200 * (index + 1)}ms`}
|
||||||
|
style={{ cursor: "default" }}
|
||||||
|
>
|
||||||
<div className="icon">
|
<div className="icon">
|
||||||
<img src={icon} alt={title} />
|
<img src={icon} alt={title} />
|
||||||
</div>
|
</div>
|
||||||
@@ -47,9 +52,7 @@ function ServicesHomeOne({ className }) {
|
|||||||
<div className="row justify-content-center">
|
<div className="row justify-content-center">
|
||||||
<div className="col-lg-8">
|
<div className="col-lg-8">
|
||||||
<div className="appie-section-title text-center">
|
<div className="appie-section-title text-center">
|
||||||
<h3 className="appie-title">
|
<h3 className="appie-title">{serviceTitle}</h3>
|
||||||
{serviceTitle}
|
|
||||||
</h3>
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -17,7 +17,12 @@ function TrafficHomeOne() {
|
|||||||
<div className="row">
|
<div className="row">
|
||||||
{featuresContent.list?.map(({ icon, header, paragraph }, idx) => (
|
{featuresContent.list?.map(({ icon, header, paragraph }, idx) => (
|
||||||
<div className="col-lg-6 col-md-6" key={idx}>
|
<div className="col-lg-6 col-md-6" key={idx}>
|
||||||
<div className={`appie-traffic-service features item-${idx + 1} mb-30`} style={{ paddingRight: "45px" }}>
|
<div
|
||||||
|
className={`appie-traffic-service features item-${
|
||||||
|
idx + 1
|
||||||
|
} mb-30`}
|
||||||
|
style={{ paddingRight: "45px" }}
|
||||||
|
>
|
||||||
<div className="icon">
|
<div className="icon">
|
||||||
<i className={icon} />
|
<i className={icon} />
|
||||||
</div>
|
</div>
|
||||||
@@ -67,11 +72,28 @@ export default TrafficHomeOne;
|
|||||||
|
|
||||||
const featuresContent = {
|
const featuresContent = {
|
||||||
title: "on WrenchBoard.",
|
title: "on WrenchBoard.",
|
||||||
detail: "Performing task on WrenchBoard is easy. All you need is a free account.",
|
detail:
|
||||||
|
"Performing task on WrenchBoard is easy. All you need is a free account.",
|
||||||
list: [
|
list: [
|
||||||
{ icon: "fal fa-check", header: "Free account", paragraph: "Get family access from parents, or create your free account." },
|
{
|
||||||
{ icon: "fal fa-check", header: "Suggest or Find Task", paragraph: "Suggest tasks to parents or pick from the market." },
|
icon: "fal fa-check",
|
||||||
{ icon: "fal fa-check", header: "Complete Task", paragraph: "Complete the task as specified." },
|
header: "Free account",
|
||||||
{ icon: "fal fa-check", header: "Reward", paragraph: "Get your reward as specified." },
|
paragraph: "Get family access from parents, or create your free account.",
|
||||||
]
|
},
|
||||||
}
|
{
|
||||||
|
icon: "fal fa-check",
|
||||||
|
header: "Suggest or Find Task",
|
||||||
|
paragraph: "Suggest tasks to parents or pick from the market.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: "fal fa-check",
|
||||||
|
header: "Complete Task",
|
||||||
|
paragraph: "Complete the task as specified.",
|
||||||
|
},
|
||||||
|
{
|
||||||
|
icon: "fal fa-check",
|
||||||
|
header: "Reward",
|
||||||
|
paragraph: "Get your reward as specified.",
|
||||||
|
},
|
||||||
|
],
|
||||||
|
};
|
||||||
|
|||||||
@@ -97,3 +97,82 @@ function CustomSlider({images, speed, indicatorColor, indicatorClass}) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export default CustomSlider
|
export default CustomSlider
|
||||||
|
|
||||||
|
// import React, { useEffect, useState } from 'react';
|
||||||
|
|
||||||
|
// function CustomSlider({ images, speed, indicatorColor, indicatorClass }) {
|
||||||
|
// const [sliderCount, setSliderCount] = useState(0);
|
||||||
|
|
||||||
|
// const sliderStart = (count) => {
|
||||||
|
// if (count + 1 && typeof count === 'number') {
|
||||||
|
// return setSliderCount(count);
|
||||||
|
// }
|
||||||
|
// if (sliderCount >= images.length - 1) {
|
||||||
|
// return setSliderCount(0);
|
||||||
|
// }
|
||||||
|
// setSliderCount((prev) => prev + 1);
|
||||||
|
// };
|
||||||
|
|
||||||
|
// useEffect(() => {
|
||||||
|
// const sliderInterval = setInterval(() => {
|
||||||
|
// sliderStart();
|
||||||
|
// }, speed * 1000);
|
||||||
|
// return () => {
|
||||||
|
// clearInterval(sliderInterval);
|
||||||
|
// };
|
||||||
|
// }, [sliderCount, speed]);
|
||||||
|
|
||||||
|
// console.log("This is slider count", sliderCount)
|
||||||
|
|
||||||
|
// return (
|
||||||
|
// <div
|
||||||
|
// className=""
|
||||||
|
// style={{ width: '100%', margin: 'auto', position: 'relative', overflow: 'hidden' }}
|
||||||
|
// >
|
||||||
|
// <div className="" style={{ width: '100%', display: 'flex' }}>
|
||||||
|
// {images.map((image, index) => (
|
||||||
|
// <img
|
||||||
|
// key={index}
|
||||||
|
// src={image}
|
||||||
|
// alt="image"
|
||||||
|
// style={{
|
||||||
|
// minWidth: '100%',
|
||||||
|
// height: 'auto',
|
||||||
|
// position: 'relative',
|
||||||
|
// transition: 'opacity .9s',
|
||||||
|
// opacity: sliderCount == index ? '1' : '0',
|
||||||
|
// }}
|
||||||
|
// />
|
||||||
|
// ))}
|
||||||
|
// </div>
|
||||||
|
// <div
|
||||||
|
// className="custom_indicators"
|
||||||
|
// style={{
|
||||||
|
// margin: '10px auto',
|
||||||
|
// display: 'flex',
|
||||||
|
// gap: '10px',
|
||||||
|
// justifyContent: 'center',
|
||||||
|
// }}
|
||||||
|
// >
|
||||||
|
// {images.map((image, index) => (
|
||||||
|
// <div
|
||||||
|
// key={index}
|
||||||
|
// onClick={() => sliderStart(index)}
|
||||||
|
// className={`custom_indicator ${indicatorClass}`}
|
||||||
|
// style={{
|
||||||
|
// backgroundColor: sliderCount === index ? `${indicatorColor}` : '',
|
||||||
|
// width: '15px',
|
||||||
|
// height: '15px',
|
||||||
|
// borderRadius: '999px',
|
||||||
|
// border: `1px solid ${indicatorColor}`,
|
||||||
|
// cursor: 'pointer',
|
||||||
|
// }}
|
||||||
|
// ></div>
|
||||||
|
// ))}
|
||||||
|
// </div>
|
||||||
|
// </div>
|
||||||
|
// );
|
||||||
|
// }
|
||||||
|
|
||||||
|
// export default CustomSlider;
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user