'use client' import Image from "next/image"; import React from "react"; import { Tab, Tabs, TabList, TabPanel } from "react-tabs"; const tabList = [ { iconOne: "105", iconTwo: "105-c" }, { iconOne: "106", iconTwo: "106-c" }, { iconOne: "107", iconTwo: "107-c" }, { iconOne: "108", iconTwo: "108-c" }, { iconOne: "109", iconTwo: "109-c" }, { iconOne: "110", iconTwo: "110-c" }, { iconOne: "111", iconTwo: "111-c" }, ]; const tabListContent = [ { img: "img_81", innerText: "Track Human faces", title: "Motation Tracking", description: `From its medieval origins to the digital earn everything there is to know about the ubi lorem ipsum passage.`, }, { img: "img_92", innerText: "keyframing experience", title: "Keyframing", description: `From its medieval origins to the digital earn everything there is to know about the ubi lorem ipsum passage.`, }, { img: "img_93", innerText: "Audio track down", title: "Audio Ducking", description: `From its medieval origins to the digital earn everything there is to know about the ubi lorem ipsum passage.`, }, { img: "img_94", innerText: "Take the color", title: "Color Matching", description: `From its medieval origins to the digital earn everything there is to know about the ubi lorem ipsum passage.`, }, { img: "img_95", innerText: "Edit videos at up to 4K", title: "4K Editing Support", description: `From its medieval origins to the digital earn everything there is to know about the ubi lorem ipsum passage.`, }, { img: "img_96", innerText: "Remove unwanted noise", title: "Noise Removal", description: `From its medieval origins to the digital earn everything there is to know about the ubi lorem ipsum passage.`, }, { img: "img_97", innerText: "Layer multiple video clips", title: "Picture in Picture (PIP)", description: `From its medieval origins to the digital earn everything there is to know about the ubi lorem ipsum passage.`, }, ]; const DocEditorTabs = () => { return ( <> {tabList.map((img, i) => (
icon icon
))}
{tabListContent.map((tabContent, i) => (
media

{tabContent.innerText}

{" "} {/* /.img-holder */}

{tabContent.title}

{tabContent.description}

{" "} {/* /.text-wrapper */}
))}
{/* /.pricing-table-area-six */}
); }; export default DocEditorTabs;