UserSyncInterface / constants.ts
AUXteam's picture
Upload folder using huggingface_hub
17b60d4 verified
raw
history blame
2.67 kB
import { NavLink, UseCase, UseCaseCategory, Testimonial, FaqItem } from './types';
export const NAV_LINKS: NavLink[] = [
{ label: 'Features', href: '#features' },
{ label: 'Use Cases', href: '#use-cases' },
{ label: 'How it Works', href: '#how-it-works' },
{ label: 'Accuracy', href: '#accuracy' },
{ label: 'Docs', href: '#docs' },
];
export const USE_CASES: UseCase[] = [
{
category: UseCaseCategory.PR_COMMS,
title: "Craft Narratives",
description: "Test different communication strategies via API to deliver the right reaction",
color: "bg-purple-500"
},
{
category: UseCaseCategory.PRODUCT,
title: "Decide Features",
description: "Test how your target customers react to product ideas and new features",
color: "bg-teal-500"
},
{
category: UseCaseCategory.BRANDING,
title: "Stand Out",
description: "Test how different brand and voice ideas resonate with your ideal buyer.",
color: "bg-pink-500"
},
{
category: UseCaseCategory.MARKETING,
title: "Generate Leads",
description: "Test marketing content in a simulation of your target customers",
color: "bg-orange-500"
},
{
category: UseCaseCategory.SOCIAL_MEDIA,
title: "Make Content",
description: "Test social content in simulations of your network and audience",
color: "bg-blue-500"
},
{
category: UseCaseCategory.JOURNALISM,
title: "Capture Attention",
description: "Test headlines, thumbnails, and article content to maximise reader attention",
color: "bg-yellow-500"
}
];
export const TESTIMONIALS: Testimonial[] = [];
export const FAQS: FaqItem[] = [
{
question: "Is the API free for developers?",
answer: "Yes. We offer a generous free tier specifically designed for developers and hobbyists to build, test, and integrate user simulations without upfront costs."
},
{
question: "What is a Focus Group?",
answer: "A Focus Group is a simulated collective of AI personas that mirror the behaviors, preferences, and interactions of a specific real-world audience."
},
{
question: "How do credits work in the free tier?",
answer: "Credits are used to run simulations. One credit equals one simulated interaction. The developer plan includes 1,000 free credits per month, refreshing automatically."
},
{
question: "Can I integrate this into my CI/CD?",
answer: "Absolutely. Our CLI tool and API are designed to run as part of your testing pipeline, allowing you to validate UX decisions before merging code."
},
{
question: "How do I get an API key?",
answer: "You need a Huggingface token with a valid account."
}
];