"use client" import React, { useState } from 'react'; import Image from 'next/image'; //import { Link } from 'react-router-dom'; import thumb from '../assets/images/features-thumb-11.png'; import rewardIcon from '../assets/images/home/circular-reward.png' import walletIcon from '../assets/images/home/circular-wallet.png' import taskIcon from '../assets/images/home/circular-task.png' import familyIcon from '../assets/images/home/circular-family.png' function SelectFeatures({ className }) { const [tab, setTab] = useState('setting'); const handleClick = (e, value) => { e.preventDefault(); setTab(value); }; //appie-services-2-area appie-services-8-area pt-90 pb-55 return (
{/*Reward Achievement*/}

Reward
Achievement

Reward with points, badges, recognition, or rewards with easy steps

Learn More
{/*Reward Achievement ee*/}

Assign
tasks or chores

Adapt to your family's needs with the flexibility of using one-time or repeated tasks or chores with the option to find any task.

Learn More
{/*Custom Reacyions 77*/}

Family
engagement

Connect with education challenges, such as quizzes or learning tasks, and private chats, and invite others to your family.

Learn More
{/*Reward Achievement*/}

Fund
wallets

Take control and feel secure by creating a virtual or physical card, allocating funds, and managing wallets for your kids.

Learn More
{/*
*/} {/* */} {/*
*/} {/*
*/} {/* */} {/*
*/} {/*
*/} {/* */} {/*
*/}
); } export default SelectFeatures;