Merge version_5 into main

Merge version_5 into main
This commit was merged in pull request #6.
This commit is contained in:
2026-04-16 13:43:26 +00:00

View File

@@ -8,13 +8,19 @@ import FaqDouble from "@/components/sections/faq/FaqDouble";
import ContactCTA from "@/components/sections/contact/ContactCTA";
import FooterBaseCard from "@/components/sections/footer/FooterBaseCard";
import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider";
import { CheckCircle, AlertTriangle, FileText, Zap, Shield, BarChart3, Lock, Users } from "lucide-react";
import { CheckCircle, AlertTriangle, FileText, BarChart3, Shield, Lock, Zap } from "lucide-react";
export default function FacturProLanding() {
const navItems = [
{ name: "Accueil", id: "/" },
{ name: "Fonctionnalités", id: "/fonctionnalites" },
{ name: "Tarifs", id: "/tarifs" },
{ name: "FAQ", id: "/faq" },
{ name: "Contact", id: "/contact" },
{ name: "Blog", id: "/blog" },
{ name: "Mentions Légales", id: "/legal" },
{ name: "À propos", id: "/about" },
{ name: "Équipe", id: "/team" },
];
const pricingPlans = [
@@ -65,7 +71,7 @@ export default function FacturProLanding() {
dashboard={{
title: "FacturPro Dashboard", logoIcon: FileText,
imageSrc: "https://webuild-dev.s3.eu-north-1.amazonaws.com/default/no-image.jpg?id=5f03cm", buttons: [{ text: "Nouvelle facture", href: "#" }],
sidebarItems: [{ icon: BarChart3 }, { icon: FileText }, { icon: Users }, { icon: Shield }],
sidebarItems: [{ icon: BarChart3 }, { icon: FileText }, { icon: Shield }, { icon: Lock }],
stats: [
{ title: "CA Mensuel", values: [24350, 24350, 24350], description: "+12% vs mois dernier" },
{ title: "Factures", values: [47, 47, 47], description: "Émises ce mois" },
@@ -141,8 +147,8 @@ export default function FacturProLanding() {
logoText="FacturPro"
columns={[
{ title: "Produit", items: [{ label: "Fonctionnalités", href: "/fonctionnalites" }, { label: "Tarifs", href: "/tarifs" }] },
{ title: "Légal", items: [{ label: "Mentions légales", href: "#" }, { label: "CGU", href: "#" }] },
{ title: "Ressources", items: [{ label: "Blog", href: "#" }, { label: "Guide réforme", href: "#" }] },
{ title: "Légal", items: [{ label: "Mentions légales", href: "/legal" }, { label: "CGU", href: "/legal" }] },
{ title: "Ressources", items: [{ label: "Blog", href: "/blog" }, { label: "Guide réforme", href: "#" }] },
{ title: "Contact", items: [{ label: "Support", href: "#" }, { label: "Email", href: "/contact" }] }
]}
/>