Merge version_1 into main
Merge version_1 into main
This commit was merged in pull request #9.
This commit is contained in:
@@ -1,17 +1,56 @@
|
||||
import type { Metadata } from "next";
|
||||
import "./styles/globals.css";
|
||||
import { Manrope } from "next/font/google";
|
||||
import { Halant } from "next/font/google";
|
||||
import { Inter } from "next/font/google";
|
||||
import "./globals.css";
|
||||
import { ServiceWrapper } from "@/components/ServiceWrapper";
|
||||
import Tag from "@/tag/Tag";
|
||||
|
||||
const manrope = Manrope({
|
||||
variable: "--font-manrope", subsets: ["latin"],
|
||||
});
|
||||
|
||||
const halant = Halant({
|
||||
variable: "--font-halant", subsets: ["latin"],
|
||||
weight: ["300", "400", "500", "600", "700"],
|
||||
});
|
||||
|
||||
const inter = Inter({
|
||||
variable: "--font-inter", subsets: ["latin"],
|
||||
});
|
||||
|
||||
export const metadata: Metadata = {
|
||||
title: "Orsay AI - Instagram & WhatsApp Lead Generation", description: "Generate qualified leads on Instagram and WhatsApp in 5 minutes. AI-powered, Instagram-safe automation."};
|
||||
title: "Orsay AI – Prospection Automatisée Instagram & WhatsApp | SaaS Lead Generation", description: "Générez 400+ leads qualifiés par mois sur Instagram et WhatsApp avec IA. Safe-by-design, sans risque de ban. Essai gratuit 7 jours, sans CB.", keywords: "prospection Instagram, lead generation, WhatsApp automation, IA SaaS, automation outbound, safe Instagram", robots: {
|
||||
index: true,
|
||||
follow: true,
|
||||
},
|
||||
openGraph: {
|
||||
title: "Orsay AI – Leads Qualifiés en 5 Minutes", description: "Automatisez votre prospection sur Instagram et WhatsApp avec IA. Safe-by-design. Essai gratuit 7 jours.", url: "https://orsay.ai", siteName: "Orsay AI", type: "website", images: [
|
||||
{
|
||||
url: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/modern-saas-dashboard-for-ai-prospection-1772552288444-b5f3f9bd.png", width: 1200,
|
||||
height: 630,
|
||||
alt: "Orsay AI Dashboard"},
|
||||
],
|
||||
},
|
||||
twitter: {
|
||||
card: "summary_large_image", title: "Orsay AI – Leads Qualifiés en 5 Minutes", description: "Automatisez votre prospection sur Instagram et WhatsApp avec IA.", images: ["https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/modern-saas-dashboard-for-ai-prospection-1772552288444-b5f3f9bd.png"],
|
||||
},
|
||||
};
|
||||
|
||||
export default function RootLayout({
|
||||
children,
|
||||
}: {
|
||||
}: Readonly<{
|
||||
children: React.ReactNode;
|
||||
}) {
|
||||
}>) {
|
||||
return (
|
||||
<html lang="en">
|
||||
<body>{children}
|
||||
<html lang="en" suppressHydrationWarning>
|
||||
<ServiceWrapper>
|
||||
<body
|
||||
className={`${manrope.variable} ${halant.variable} ${inter.variable} antialiased`}
|
||||
>
|
||||
<Tag />
|
||||
{children}
|
||||
|
||||
<script
|
||||
dangerouslySetInnerHTML={{
|
||||
__html: `
|
||||
@@ -1379,6 +1418,7 @@ export default function RootLayout({
|
||||
}}
|
||||
/>
|
||||
</body>
|
||||
</ServiceWrapper>
|
||||
</html>
|
||||
);
|
||||
}
|
||||
|
||||
203
src/app/page.tsx
203
src/app/page.tsx
@@ -1,18 +1,70 @@
|
||||
"use client";
|
||||
|
||||
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
|
||||
import NavbarStyleApple from '@/components/navbar/NavbarStyleApple/NavbarStyleApple';
|
||||
import HeroLogoBillboardSplit from '@/components/sections/hero/HeroLogoBillboardSplit';
|
||||
import TextSplitAbout from '@/components/sections/about/TextSplitAbout';
|
||||
import FeatureCardTwentyOne from '@/components/sections/feature/FeatureCardTwentyOne';
|
||||
import PricingCardNine from '@/components/sections/pricing/PricingCardNine';
|
||||
import TestimonialCardFifteen from '@/components/sections/testimonial/TestimonialCardFifteen';
|
||||
import FaqSplitMedia from '@/components/sections/faq/FaqSplitMedia';
|
||||
import ContactText from '@/components/sections/contact/ContactText';
|
||||
import FooterBaseCard from '@/components/sections/footer/FooterBaseCard';
|
||||
import SocialProofOne from '@/components/sections/socialProof/SocialProofOne';
|
||||
import NavbarStyleApple from "@/components/navbar/NavbarStyleApple/NavbarStyleApple";
|
||||
import HeroLogoBillboardSplit from "@/components/sections/hero/HeroLogoBillboardSplit";
|
||||
import TextSplitAbout from "@/components/sections/about/TextSplitAbout";
|
||||
import FeatureCardTwentyOne from "@/components/sections/feature/FeatureCardTwentyOne";
|
||||
import PricingCardNine from "@/components/sections/pricing/PricingCardNine";
|
||||
import TestimonialCardFifteen from "@/components/sections/testimonial/TestimonialCardFifteen";
|
||||
import FaqSplitMedia from "@/components/sections/faq/FaqSplitMedia";
|
||||
import ContactText from "@/components/sections/contact/ContactText";
|
||||
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
|
||||
import SocialProofOne from "@/components/sections/socialProof/SocialProofOne";
|
||||
|
||||
export default function LandingPage() {
|
||||
const navItems = [
|
||||
{ name: "Fonctionnalités", id: "features" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Blog", id: "blog" },
|
||||
{ name: "Essai gratuit", id: "{{trial_url}}" },
|
||||
];
|
||||
|
||||
const pricingPlans = [
|
||||
{
|
||||
id: "plan-97", title: "Plan Orsay AI", price: "97", period: "$/mois", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/modern-pricing-plan-card-visualization-s-1772552287498-d5dc3e39.png", imageAlt: "Plan Orsay AI Pro", features: [
|
||||
"Lead Finder illimité (analyse quotidienne)", "Outreach Instagram illimité (limites safe)", "WhatsApp automation", "Agents IA illimités", "Séquences illimitées", "Conversations centralisées", "Intégrations Zapier + CSV", "Support email", "+ 0,15 $ par lead généré"],
|
||||
button: {
|
||||
text: "Démarrer l'essai gratuit (7 jours)", href: "{{trial_url}}"},
|
||||
},
|
||||
];
|
||||
|
||||
const footerColumns = [
|
||||
{
|
||||
title: "Produit", items: [
|
||||
{ label: "Fonctionnalités", href: "#features" },
|
||||
{ label: "Pricing", href: "#pricing" },
|
||||
{ label: "Intégrations", href: "#integrations" },
|
||||
{ label: "FAQ", href: "#faq" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Entreprise", items: [
|
||||
{ label: "À propos", href: "https://orsay.ai/about" },
|
||||
{ label: "Blog", href: "https://orsay.ai/blog" },
|
||||
{ label: "Carrières", href: "https://orsay.ai/careers" },
|
||||
{ label: "Contact", href: "{{support_email}}" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Légal", items: [
|
||||
{ label: "Conditions d'utilisation", href: "#" },
|
||||
{ label: "Politique de confidentialité", href: "#" },
|
||||
{ label: "Mentions légales", href: "#" },
|
||||
{ label: "RGPD", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Ressources", items: [
|
||||
{ label: "Documentation", href: "#" },
|
||||
{ label: "API", href: "#" },
|
||||
{ label: "Guides", href: "#" },
|
||||
{ label: "Support", href: "{{support_email}}" },
|
||||
],
|
||||
},
|
||||
];
|
||||
|
||||
return (
|
||||
<ThemeProvider
|
||||
defaultButtonVariant="bounce-effect"
|
||||
@@ -27,33 +79,25 @@ export default function LandingPage() {
|
||||
headingFontWeight="light"
|
||||
>
|
||||
<div id="nav" data-section="nav">
|
||||
<NavbarStyleApple
|
||||
brandName="Orsay AI"
|
||||
navItems={[
|
||||
{ name: "Fonctionnalités", id: "features" },
|
||||
{ name: "Pricing", id: "pricing" },
|
||||
{ name: "FAQ", id: "faq" },
|
||||
{ name: "Blog", id: "blog" },
|
||||
{ name: "Essai gratuit", id: "{{trial_url}}" },
|
||||
]}
|
||||
/>
|
||||
<NavbarStyleApple brandName="Orsay AI" navItems={navItems} />
|
||||
</div>
|
||||
|
||||
<div id="hero" data-section="hero">
|
||||
<HeroLogoBillboardSplit
|
||||
logoText="ORSAY AI"
|
||||
description="Générez des leads qualifiés sur Instagram et WhatsApp en 5 minutes. Automatisé par IA, protégé contre les flags Instagram."
|
||||
background={{ variant: "radial-gradient" }}
|
||||
background={{ variant: "aurora" }}
|
||||
buttons={[
|
||||
{ text: "Démarrer l'essai gratuit (7 jours)", href: "{{trial_url}}" },
|
||||
{ text: "Voir comment ça marche", href: "how-it-works" },
|
||||
{ text: "Voir comment ça marche", href: "#how-it-works" },
|
||||
]}
|
||||
layoutOrder="default"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/modern-saas-dashboard-for-ai-prospection-1772551947680-ffed76e2.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/modern-saas-dashboard-for-ai-prospection-1772552288444-b5f3f9bd.png"
|
||||
imageAlt="Tableau de bord Orsay AI avec conversations de leads"
|
||||
frameStyle="browser"
|
||||
mediaAnimation="slide-up"
|
||||
buttonAnimation="opacity"
|
||||
useInvertedBackground={false}
|
||||
className="w-full"
|
||||
containerClassName="py-20 md:py-32"
|
||||
descriptionClassName="text-lg md:text-2xl font-light leading-relaxed"
|
||||
@@ -70,7 +114,7 @@ export default function LandingPage() {
|
||||
"La prospection manuelle sur Instagram et WhatsApp coûte du temps, génère des réponses tardives, et vous expose à des risques de ban. Les leads froids restent froids. Les relances sont oubliées.", "Coût réel : 1 agent = 2 000-3 000 $/mois. Taux de réponse = 5-10%. Temps perdu = 20-30h/semaine. Risque de ban = perte totale du compte."]}
|
||||
useInvertedBackground={false}
|
||||
showBorder={true}
|
||||
buttons={[{ text: "Voir la solution", href: "solution" }]}
|
||||
buttons={[{ text: "Voir la solution", href: "#solution" }]}
|
||||
buttonAnimation="opacity"
|
||||
className="w-full"
|
||||
containerClassName="py-16 md:py-24 px-6 md:px-12"
|
||||
@@ -94,12 +138,12 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "3", title: "Étape 3 : Qualifier & Booker", content: "Un Agent IA gère la conversation, pose les bonnes questions, qualifie le lead, et propose directement un créneau de RDV."},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/instagram-lead-finder-dashboard-showing--1772551947242-4623fc77.png?_wi=1"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/instagram-lead-finder-dashboard-showing--1772552289358-3bce7be8.png"
|
||||
imageAlt="Tableau de leads avec scoring et actions"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="left"
|
||||
useInvertedBackground={false}
|
||||
buttons={[{ text: "Découvrir les features", href: "features" }]}
|
||||
buttons={[{ text: "Découvrir les features", href: "#features" }]}
|
||||
buttonAnimation="opacity"
|
||||
className="w-full"
|
||||
containerClassName="py-16 md:py-24 px-6 md:px-12"
|
||||
@@ -120,7 +164,7 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "3", title: "Mise à jour quotidienne", content: "Nouveaux leads chaque jour, sans effort manuel. Tableau centralisé, analytics détaillées."},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/instagram-lead-finder-dashboard-showing--1772551947242-4623fc77.png?_wi=2"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/instagram-lead-finder-dashboard-showing--1772552289358-3bce7be8.png"
|
||||
imageAlt="Tableau Lead Finder avec scores et filtres"
|
||||
mediaAnimation="opacity"
|
||||
mediaPosition="right"
|
||||
@@ -144,7 +188,7 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "3", title: "Protections de sécurité", content: "Limites intelligentes, pause auto en cas de flag, 24h de sécurité après reconnexion. Risque fortement minimisé."},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/flowchart-showing-instagram-warm-up-proc-1772551946424-048e996d.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/flowchart-showing-instagram-warm-up-proc-1772552290482-dfb4f491.png"
|
||||
imageAlt="Diagramme du warm-up Instagram progressif"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="left"
|
||||
@@ -168,7 +212,7 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "3", title: "Multi-langues & multi-canaux", content: "Créez un Agent par langue. Orsay gère IG et WhatsApp avec les mêmes règles de qualification."},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/frequently-asked-questions-illustration--1772551946375-6b2e660a.png?_wi=1"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/frequently-asked-questions-illustration--1772552287221-e2dd9d9c.png"
|
||||
imageAlt="Illustration des agents IA gérant les conversations"
|
||||
mediaAnimation="opacity"
|
||||
mediaPosition="right"
|
||||
@@ -192,7 +236,7 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "3", title: "Couches 3-5 : Limites, Pause Auto, 24h Sécurité", content: "Limites intelligentes (max ~50 DMs/jour). Pause automatique en cas de flag. 24h de repos après reconnexion. Résultat : risque réduit de 80-90%."},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/five-layer-security-infographic-for-inst-1772551946137-f37e5756.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/five-layer-security-infographic-for-inst-1772552286909-d986317e.png"
|
||||
imageAlt="Infographie des 5 couches de sécurité Instagram"
|
||||
mediaAnimation="slide-up"
|
||||
mediaPosition="left"
|
||||
@@ -216,7 +260,7 @@ export default function LandingPage() {
|
||||
{
|
||||
id: "3", title: "Étapes 6-7 : Intégrations & Analytics (1 min)", content: "Connectez Zapier (Facebook Lead Ads, ClickFunnels, etc.) → Suivez vos leads et RDVs sur le dashboard. Vous êtes opérationnel."},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/seven-step-onboarding-process-illustrate-1772551945495-a74ea17d.png"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/seven-step-onboarding-process-illustrate-1772552287945-0f8a58e1.png"
|
||||
imageAlt="Diagramme des 7 étapes de setup"
|
||||
mediaAnimation="opacity"
|
||||
mediaPosition="right"
|
||||
@@ -234,7 +278,8 @@ export default function LandingPage() {
|
||||
tagAnimation="opacity"
|
||||
textboxLayout="default"
|
||||
useInvertedBackground={false}
|
||||
names={["Zapier", "Facebook Lead Ads", "ClickFunnels", "Systeme.io", "Google Forms", "Typeform", "HubSpot", "Pipedrive"]}
|
||||
names={[
|
||||
"Zapier", "Facebook Lead Ads", "ClickFunnels", "Systeme.io", "Google Forms", "Typeform", "HubSpot", "Pipedrive"]}
|
||||
speed={35}
|
||||
showCard={true}
|
||||
buttonAnimation="opacity"
|
||||
@@ -250,9 +295,12 @@ export default function LandingPage() {
|
||||
rating={5}
|
||||
author="Marie D., Directrice Marketing | Agence Digital"
|
||||
avatars={[
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/professional-headshot-of-a-female-market-1772551945838-f8c2db1e.png", alt: "Marie D." },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/professional-headshot-of-a-male-tech-ent-1772551945849-ecbdf2b3.png", alt: "Thomas L." },
|
||||
{ src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/professional-headshot-of-a-female-growth-1772551945804-d4ba8d26.png", alt: "Sophie M." },
|
||||
{
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/professional-headshot-of-a-female-market-1772552286234-f9bd9bb5.png", alt: "Marie D."},
|
||||
{
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/professional-headshot-of-a-male-tech-ent-1772552287060-f2dc22a2.png", alt: "Thomas L."},
|
||||
{
|
||||
src: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/professional-headshot-of-a-female-growth-1772552286627-12e3c57a.png", alt: "Sophie M."},
|
||||
]}
|
||||
ratingAnimation="opacity"
|
||||
avatarsAnimation="slide-up"
|
||||
@@ -264,13 +312,7 @@ export default function LandingPage() {
|
||||
|
||||
<div id="pricing" data-section="pricing">
|
||||
<PricingCardNine
|
||||
plans={[
|
||||
{
|
||||
id: "plan-97", title: "Plan Orsay AI", price: "97", period: "$/mois", imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/modern-pricing-plan-card-visualization-s-1772551948802-35a4afe8.png", imageAlt: "Plan Orsay AI Pro", features: [
|
||||
"Lead Finder illimité (analyse quotidienne)", "Outreach Instagram illimité (limites safe)", "WhatsApp automation", "Agents IA illimités", "Séquences illimitées", "Conversations centralisées", "Intégrations Zapier + CSV", "Support email", "+ 0,15 $ par lead généré"],
|
||||
button: { text: "Démarrer l'essai gratuit (7 jours)", href: "{{trial_url}}" },
|
||||
},
|
||||
]}
|
||||
plans={pricingPlans}
|
||||
animationType="slide-up"
|
||||
title="Tarification simple. Pas de surprise."
|
||||
description="Un seul plan. Pas de tiers caché. Vous payez pour ce que vous utilisez."
|
||||
@@ -288,21 +330,34 @@ export default function LandingPage() {
|
||||
<div id="faq" data-section="faq">
|
||||
<FaqSplitMedia
|
||||
faqs={[
|
||||
{ id: "1", title: "À quelle vitesse mes leads sont-ils contactés ?", content: "En général, ~5 minutes (paramétrable). Leads CSV : le lendemain (après 1 jour) pour respecter les limites de sécurité IG." },
|
||||
{ id: "2", title: "Puis-je modifier le script de mon Agent IA ?", content: "Oui, totalement. Modifiez le ton, la langue, les questions, les réponses, le CTA à tout moment. Vos paramètres, vos règles." },
|
||||
{ id: "3", title: "Je risque un flag Instagram ?", content: "Orsay minimise le risque via warm-up, montée progressive, limites intelligentes, pause auto, 24h de sécurité. Risque réduit de 80-90%, pas zéro." },
|
||||
{ id: "4", title: "Comment ajouter des membres à mon équipe ?", content: "Paramètres → Équipe → Ajouter un membre. Définissez les permissions (Admin, Manager, Viewer). Chaque membre reçoit un lien d'invitation." },
|
||||
{ id: "5", title: "Mes données sont-elles sécurisées ?", content: "Oui. Chiffrement SSL, serveurs sécurisés (AWS ISO 27001), conformité RGPD. Vos données ne sont jamais partagées avec des tiers." },
|
||||
{ id: "6", title: "L'Agent IA peut-il gérer plusieurs langues ?", content: "Oui. Créez un Agent par langue. Orsay détecte la langue du prospect et route automatiquement vers l'agent approprié." },
|
||||
{ id: "7", title: "Comment intégrer Orsay à mon CRM ?", content: "Via Zapier. Connectez votre CRM (HubSpot, Pipedrive, Salesforce, etc.). Les leads qualifiés sont automatiquement envoyés." },
|
||||
{ id: "8", title: "Quelles plateformes sont supportées ?", content: "Actuellement : Instagram (Lead Finder, inbound, outbound) et WhatsApp. Roadmap : Facebook Messenger, LinkedIn DMs, SMS." },
|
||||
{ id: "9", title: "Comment suivre la performance ?", content: "Dashboard complet : leads générés, taux de réponse, leads qualifiés, RDVs bookés, coût par lead, ROI estimé. Export CSV disponible." },
|
||||
{ id: "10", title: "Désinscription / Opt-out : que se passe-t-il ?", content: "Si un lead demande 'stop', marquez-le comme opt-out. Il ne recevra plus aucun message. Orsay respecte les demandes automatiquement." },
|
||||
{ id: "11", title: "Si le lead existe déjà dans Orsay, est-il recontacté ?", content: "Non. Orsay détecte les doublons et ne recontacte pas un lead déjà en conversation. Pas de spam accidentel." },
|
||||
{ id: "12", title: "Leads importés CSV : quand sont-ils contactés ?", content: "Le lendemain (après 1 jour). Cela laisse le temps au warm-up et respecte les limites de sécurité Instagram." },
|
||||
{ id: "13", title: "Quel est le plafond de DMs en outbound ?", content: "~50 DMs/jour pour rester safe (paramétrable). Orsay applique une montée progressive pour rester dans les limites." },
|
||||
{
|
||||
id: "1", title: "À quelle vitesse mes leads sont-ils contactés ?", content: "En général, ~5 minutes (paramétrable). Leads CSV : le lendemain (après 1 jour) pour respecter les limites de sécurité IG."},
|
||||
{
|
||||
id: "2", title: "Puis-je modifier le script de mon Agent IA ?", content: "Oui, totalement. Modifiez le ton, la langue, les questions, les réponses, le CTA à tout moment. Vos paramètres, vos règles."},
|
||||
{
|
||||
id: "3", title: "Je risque un flag Instagram ?", content: "Orsay minimise le risque via warm-up, montée progressive, limites intelligentes, pause auto, 24h de sécurité. Risque réduit de 80-90%, pas zéro."},
|
||||
{
|
||||
id: "4", title: "Comment ajouter des membres à mon équipe ?", content: "Paramètres → Équipe → Ajouter un membre. Définissez les permissions (Admin, Manager, Viewer). Chaque membre reçoit un lien d'invitation."},
|
||||
{
|
||||
id: "5", title: "Mes données sont-elles sécurisées ?", content: "Oui. Chiffrement SSL, serveurs sécurisés (AWS ISO 27001), conformité RGPD. Vos données ne sont jamais partagées avec des tiers."},
|
||||
{
|
||||
id: "6", title: "L'Agent IA peut-il gérer plusieurs langues ?", content: "Oui. Créez un Agent par langue. Orsay détecte la langue du prospect et route automatiquement vers l'agent approprié."},
|
||||
{
|
||||
id: "7", title: "Comment intégrer Orsay à mon CRM ?", content: "Via Zapier. Connectez votre CRM (HubSpot, Pipedrive, Salesforce, etc.). Les leads qualifiés sont automatiquement envoyés."},
|
||||
{
|
||||
id: "8", title: "Quelles plateformes sont supportées ?", content: "Actuellement : Instagram (Lead Finder, inbound, outbound) et WhatsApp. Roadmap : Facebook Messenger, LinkedIn DMs, SMS."},
|
||||
{
|
||||
id: "9", title: "Comment suivre la performance ?", content: "Dashboard complet : leads générés, taux de réponse, leads qualifiés, RDVs bookés, coût par lead, ROI estimé. Export CSV disponible."},
|
||||
{
|
||||
id: "10", title: "Désinscription / Opt-out : que se passe-t-il ?", content: "Si un lead demande 'stop', marquez-le comme opt-out. Il ne recevra plus aucun message. Orsay respecte les demandes automatiquement."},
|
||||
{
|
||||
id: "11", title: "Si le lead existe déjà dans Orsay, est-il recontacté ?", content: "Non. Orsay détecte les doublons et ne recontacte pas un lead déjà en conversation. Pas de spam accidentel."},
|
||||
{
|
||||
id: "12", title: "Leads importés CSV : quand sont-ils contactés ?", content: "Le lendemain (après 1 jour). Cela laisse le temps au warm-up et respecte les limites de sécurité Instagram."},
|
||||
{
|
||||
id: "13", title: "Quel est le plafond de DMs en outbound ?", content: "~50 DMs/jour pour rester safe (paramétrable). Orsay applique une montée progressive pour rester dans les limites."},
|
||||
]}
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/frequently-asked-questions-illustration--1772551946375-6b2e660a.png?_wi=2"
|
||||
imageSrc="https://webuild-dev.s3.eu-north-1.amazonaws.com/users/user_3ARKdYBHG7FKwV3UuBnTWKty10v/frequently-asked-questions-illustration--1772552287221-e2dd9d9c.png"
|
||||
imageAlt="Illustration FAQ - Support et Aide"
|
||||
mediaAnimation="opacity"
|
||||
faqsAnimation="slide-up"
|
||||
@@ -339,42 +394,8 @@ export default function LandingPage() {
|
||||
<div id="footer" data-section="footer">
|
||||
<FooterBaseCard
|
||||
logoText="Orsay AI"
|
||||
columns={[
|
||||
{
|
||||
title: "Produit", items: [
|
||||
{ label: "Fonctionnalités", href: "features" },
|
||||
{ label: "Pricing", href: "pricing" },
|
||||
{ label: "Intégrations", href: "integrations" },
|
||||
{ label: "FAQ", href: "faq" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Entreprise", items: [
|
||||
{ label: "À propos", href: "https://orsay.ai/about" },
|
||||
{ label: "Blog", href: "https://orsay.ai/blog" },
|
||||
{ label: "Carrières", href: "https://orsay.ai/careers" },
|
||||
{ label: "Contact", href: "{{support_email}}" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Légal", items: [
|
||||
{ label: "Conditions d'utilisation", href: "#" },
|
||||
{ label: "Politique de confidentialité", href: "#" },
|
||||
{ label: "Mentions légales", href: "#" },
|
||||
{ label: "RGPD", href: "#" },
|
||||
],
|
||||
},
|
||||
{
|
||||
title: "Ressources", items: [
|
||||
{ label: "Documentation", href: "#" },
|
||||
{ label: "API", href: "#" },
|
||||
{ label: "Guides", href: "#" },
|
||||
{ label: "Support", href: "{{support_email}}" },
|
||||
],
|
||||
},
|
||||
]}
|
||||
columns={footerColumns}
|
||||
copyrightText="© 2025 Orsay AI. All rights reserved."
|
||||
onPrivacyClick={null}
|
||||
className="w-full"
|
||||
containerClassName="py-16 md:py-20 px-6 md:px-12"
|
||||
/>
|
||||
|
||||
Reference in New Issue
Block a user