import Image from "next/image"; interface FaqItem { id: string; question: string; } const FAQ_ITEMS: FaqItem[] = [ { id: "4193:10416", question: "We’ve been using Jira / ClickUp for years. How difficult is data migration?", }, { id: "4193:10431", question: "Won’t employees feel uncomfortable or monitored with time tracking?", }, { id: "4193:10447", question: "Transitioning from Basecamp to Monday.com requires careful planning to avoid data loss.", }, { id: "4193:10462", question: "Is the subscription cost justified for mid-sized and large teams?", }, { id: "4193:10478", question: "Transitioning from Basecamp to Monday.com requires careful planning to avoid data loss.", }, { id: "4193:10493", question: "Is the subscription cost justified for mid-sized and large teams?", }, ]; export function FaqSection() { return (
{/* Root Container: FAQ (Type: FRAME, id: 4193:10413, width: 1010, height: 534) */}
{/* Header Block: Text (Type: FRAME, id: 4193:10508, width: 1010, height: 132, x: 0, y: 0) */}
{/* Background Glow Aura: Back (Clipped from half of icon to top) */}
{/* Badge: 3 (Type: FRAME, id: 4193:10514, width: 40, height: 40, x: 485, y: 0, cornerRadius: 50) */}
{/* Header Text Container: Frame 2095586188 (Type: FRAME, id: 4193:10518, width: 1010, height: 68, itemSpacing: 12) */}
{/* Title (Type: TEXT, id: 4193:10519, 32px, Inter Medium, #ffffff) */}

Addressing Your Concerns

{/* Subtitle (Type: TEXT, id: 4193:10520, 14px, Inter Regular, #6f829e) */}

We answer the most common questions about switching to TeamBy so you can choose with confidence.

{/* Cards Grid: Frame 2095586174 (Type: FRAME, id: 4193:10414, width: 1010, height: 322, x: 0, y: 212, itemSpacing: 32) */}
{FAQ_ITEMS.map((item, index) => (
{/* Subtle Card Background Glow */} ))}
); } export const FAQSection = FaqSection;