"use client" import Image from "next/image" import React, { useState } from "react" function VerticalTabsFeature() { const [tab, setTab] = useState("1") return ( <> {/* Features */}
{/* Grid */}

Save 20+ hours of app development with FastPocket

{/* Tab Navs */} {/* End Tab Navs */}
{/* End Col */}
{/* Tab Content */}
{tab == "1" && (
Image Description
)} {tab == "2" && (
Image Description
)} {tab == "3" && (
Image Description
)}
{/* End Tab Content */} {/* SVG Element */}
{/* End SVG Element */}
{/* End Col */}
{/* End Grid */} {/* Background Color */}
{/* End Background Color */}
{/* End Features */} ) } export default VerticalTabsFeature