"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" && (
)}
{tab == "2" && (
)}
{tab == "3" && (
)}
{/* End Tab Content */}
{/* SVG Element */}
{/* End SVG Element */}
{/* End Col */}
{/* End Grid */}
{/* Background Color */}
{/* End Background Color */}
{/* End Features */}
>
)
}
export default VerticalTabsFeature