| 1 |
1 |
// Auteur : Simon-Pierre Boucher — contact@spboucher.ai |
|
2 |
+// Accueil v2 « HQ » — composition éditoriale ouverte : filets d'encre, |
|
3 |
+// bandes pleine largeur, chiffres géants, index des plateformes. |
| 2 |
4 |
import type { ReactNode } from "react"; |
| 3 |
5 |
import { |
| 4 |
6 |
AggregationFigure, |
| 422 |
424 |
], |
| 423 |
425 |
]; |
| 424 |
426 |
|
|
427 |
+/* ------------------------------------------------------------------ */ |
|
428 |
+/* Composants éditoriaux v2 */ |
|
429 |
+/* ------------------------------------------------------------------ */ |
|
430 |
+ |
| 425 |
431 |
function Section({ |
| 426 |
432 |
id, |
|
433 |
+ index, |
| 427 |
434 |
kicker, |
| 428 |
435 |
title, |
|
436 |
+ lead, |
| 429 |
437 |
children, |
| 430 |
438 |
}: { |
| 431 |
439 |
id?: string; |
|
440 |
+ index: string; |
| 432 |
441 |
kicker: string; |
| 433 |
442 |
title: ReactNode; |
|
443 |
+ lead?: ReactNode; |
| 434 |
444 |
children: ReactNode; |
| 435 |
445 |
}) { |
| 436 |
446 |
return ( |
| 437 |
|
− <section id={id} className="mt-16 scroll-mt-24 sm:mt-20"> |
| 438 |
|
− <p className="kicker">{kicker}</p> |
| 439 |
|
− <h2 className="gk-display mt-2 text-[22px] font-bold tracking-[-0.03em] uppercase sm:text-[26px]"> |
|
447 |
+ <section id={id} className="mt-20 scroll-mt-24 sm:mt-28"> |
|
448 |
+ <div className="sec-head"> |
|
449 |
+ <p className="kicker">{kicker}</p> |
|
450 |
+ <span className="sec-index">§ {index}</span> |
|
451 |
+ </div> |
|
452 |
+ <h2 className="gk-display mt-6 max-w-3xl text-[clamp(27px,4.6vw,50px)] leading-[1.02] font-bold tracking-[-0.035em] uppercase"> |
| 440 |
453 |
{title} |
| 441 |
454 |
</h2> |
|
455 |
+ {lead ? ( |
|
456 |
+ <p className="mt-4 max-w-xl text-[15px] leading-relaxed text-ink-2"> |
|
457 |
+ {lead} |
|
458 |
+ </p> |
|
459 |
+ ) : null} |
| 442 |
460 |
{children} |
| 443 |
461 |
</section> |
| 444 |
462 |
); |
| 445 |
463 |
} |
| 446 |
464 |
|
|
465 |
+/** Ligne de données mono — remplace les rangées de pilules. */ |
|
466 |
+function DataLine({ |
|
467 |
+ items, |
|
468 |
+ dark = false, |
|
469 |
+ className = "", |
|
470 |
+}: { |
|
471 |
+ items: string[]; |
|
472 |
+ dark?: boolean; |
|
473 |
+ className?: string; |
|
474 |
+}) { |
|
475 |
+ return ( |
|
476 |
+ <p |
|
477 |
+ className={`gk-mono tnum text-[11.5px] leading-[2] font-bold ${ |
|
478 |
+ dark ? "text-[rgba(245,243,238,0.75)]" : "text-ink-2" |
|
479 |
+ } ${className}`} |
|
480 |
+ > |
|
481 |
+ {items.map((it, i) => ( |
|
482 |
+ <span key={it} className="whitespace-nowrap"> |
|
483 |
+ {i > 0 && ( |
|
484 |
+ <span |
|
485 |
+ aria-hidden="true" |
|
486 |
+ className={`mx-2.5 ${dark ? "text-lime" : "text-green"}`} |
|
487 |
+ > |
|
488 |
+ ◆ |
|
489 |
+ </span> |
|
490 |
+ )} |
|
491 |
+ {it} |
|
492 |
+ </span> |
|
493 |
+ ))} |
|
494 |
+ </p> |
|
495 |
+ ); |
|
496 |
+} |
|
497 |
+ |
|
498 |
+/** Liste à puces losange — le marqueur signature du groupe. */ |
|
499 |
+function DiamondList({ |
|
500 |
+ items, |
|
501 |
+ accent = "#d9f26b", |
|
502 |
+ dark = false, |
|
503 |
+ className = "", |
|
504 |
+}: { |
|
505 |
+ items: string[]; |
|
506 |
+ accent?: string; |
|
507 |
+ dark?: boolean; |
|
508 |
+ className?: string; |
|
509 |
+}) { |
|
510 |
+ return ( |
|
511 |
+ <ul className={`space-y-2.5 ${className}`}> |
|
512 |
+ {items.map((f) => ( |
|
513 |
+ <li |
|
514 |
+ key={f} |
|
515 |
+ className={`flex gap-3 text-[13.5px] leading-relaxed ${ |
|
516 |
+ dark ? "text-[rgba(245,243,238,0.75)]" : "text-ink-2" |
|
517 |
+ }`} |
|
518 |
+ > |
|
519 |
+ <span |
|
520 |
+ aria-hidden="true" |
|
521 |
+ className={`mt-[7px] h-[5px] w-[5px] flex-none rotate-45 ${ |
|
522 |
+ dark ? "" : "border border-ink" |
|
523 |
+ }`} |
|
524 |
+ style={{ background: accent }} |
|
525 |
+ /> |
|
526 |
+ {f} |
|
527 |
+ </li> |
|
528 |
+ ))} |
|
529 |
+ </ul> |
|
530 |
+ ); |
|
531 |
+} |
|
532 |
+ |
| 447 |
533 |
/* ------------------------------------------------------------------ */ |
| 448 |
534 |
/* Entrée de dictionnaire — l'allusion fondatrice : ·Ka = agréger. */ |
| 449 |
535 |
/* ------------------------------------------------------------------ */ |
| 450 |
536 |
|
| 451 |
537 |
function KaDefinition() { |
| 452 |
538 |
return ( |
| 453 |
|
− <aside className="gk-card gk-card-hover rise p-6 sm:p-7 [animation-delay:0.3s]"> |
|
539 |
+ <aside className="rise border-l-2 border-ink pl-5 [animation-delay:0.3s] sm:pl-7"> |
| 454 |
540 |
<p className="klabel">Le nom, expliqué</p> |
| 455 |
|
− <p className="gk-display mt-3 text-[30px] font-bold tracking-[-0.03em]"> |
|
541 |
+ <p className="gk-display mt-3 text-[32px] font-bold tracking-[-0.03em]"> |
| 456 |
542 |
·Ka{" "} |
| 457 |
543 |
<span className="gk-mono align-middle text-[13px] font-medium text-ink-3"> |
| 458 |
544 |
/ka/ suffixe |
| 475 |
561 |
</span> |
| 476 |
562 |
</li> |
| 477 |
563 |
</ol> |
| 478 |
|
− <p className="mt-5 border-t-[1.5px] border-dashed border-[rgba(20,24,20,0.25)] pt-4 text-[13px] italic text-ink-2"> |
| 479 |
|
− « Tout ce qui finit en <span className="gk-display font-bold not-italic">·Ka</span>{" "} |
| 480 |
|
− agrège. » |
|
564 |
+ <p className="rule-hair mt-5 pt-4 text-[13px] italic text-ink-2"> |
|
565 |
+ « Tout ce qui finit en{" "} |
|
566 |
+ <span className="gk-display font-bold not-italic">·Ka</span> agrège. » |
| 481 |
567 |
</p> |
| 482 |
568 |
</aside> |
| 483 |
569 |
); |
| 484 |
570 |
} |
| 485 |
571 |
|
| 486 |
|
−function ProductCard({ |
| 487 |
|
− p, |
| 488 |
|
− index, |
| 489 |
|
− wide = false, |
| 490 |
|
−}: { |
| 491 |
|
− p: Product; |
| 492 |
|
− index: number; |
| 493 |
|
− wide?: boolean; |
| 494 |
|
−}) { |
|
572 |
+/* ------------------------------------------------------------------ */ |
|
573 |
+/* Bande de signes vitaux — les chiffres live, pleine largeur */ |
|
574 |
+/* ------------------------------------------------------------------ */ |
|
575 |
+ |
|
576 |
+function VitalsBand({ m }: { m: LiveMetrics }) { |
|
577 |
+ const vitals: { v: string; l: string }[] = [ |
|
578 |
+ { v: fmtPlus(m.totals.items), l: "fiches en ligne, comptées à l'instant" }, |
|
579 |
+ { v: `${fmtInt(m.totals.connectors)}+`, l: "connecteurs sources actifs" }, |
|
580 |
+ { v: "10", l: "agrégateurs + 1 moteur de recherche" }, |
|
581 |
+ { v: fmtPlus(m.trouveka.pages), l: "pages indexées par Trouve·Ka" }, |
|
582 |
+ { v: fmtInt(m.vraiprix.units), l: "propriétés évaluées au Québec" }, |
|
583 |
+ { v: "22 M+", l: "observations immobilières" }, |
|
584 |
+ ]; |
| 495 |
585 |
return ( |
| 496 |
|
− <article |
| 497 |
|
− className={`gk-card gk-card-hover rise relative overflow-hidden p-5 pt-6 sm:p-7 sm:pt-8 ${ |
| 498 |
|
− wide ? "sm:col-span-2 lg:col-span-3" : "" |
| 499 |
|
− }`} |
| 500 |
|
− style={{ animationDelay: `${0.1 + index * 0.1}s` }} |
| 501 |
|
− > |
| 502 |
|
− {/* bande d'accent de la marque, en tête de carte */} |
| 503 |
|
− <span |
| 504 |
|
− aria-hidden="true" |
| 505 |
|
− className="absolute inset-x-0 top-0 h-[6px]" |
| 506 |
|
− style={{ background: p.accent }} |
| 507 |
|
− /> |
| 508 |
|
− <div className="flex flex-wrap items-center justify-between gap-x-3 gap-y-2"> |
| 509 |
|
− <span className="flex flex-wrap items-center gap-2"> |
| 510 |
|
− <span |
| 511 |
|
− className="gk-mono inline-block -rotate-2 rounded-[5px] px-[7px] py-[2px] text-[11px] font-bold" |
| 512 |
|
− style={{ background: p.inkbox, color: p.accent }} |
| 513 |
|
− > |
| 514 |
|
− {p.num} |
| 515 |
|
− </span> |
| 516 |
|
− <span className="klabel">{p.field}</span> |
| 517 |
|
− {p.isNew && ( |
| 518 |
|
− <span className="gk-mono inline-block rotate-1 rounded-[5px] border border-ink bg-lime px-[7px] py-[2px] text-[10px] font-bold tracking-[0.08em] uppercase"> |
| 519 |
|
− Nouveau |
| 520 |
|
− </span> |
| 521 |
|
− )} |
| 522 |
|
− </span> |
| 523 |
|
− <span className="klabel">{p.domain}</span> |
| 524 |
|
− </div> |
| 525 |
|
− <div |
| 526 |
|
− className={ |
| 527 |
|
− wide |
| 528 |
|
− ? "lg:grid lg:grid-cols-[minmax(0,1.15fr)_minmax(0,1fr)] lg:gap-x-10" |
| 529 |
|
− : "" |
| 530 |
|
− } |
| 531 |
|
− > |
| 532 |
|
− <div> |
| 533 |
|
− <h3 className="gk-display mt-4 inline-flex items-baseline gap-[5px] text-[32px] font-bold tracking-[-0.04em] sm:text-[38px]"> |
| 534 |
|
− {p.markLeft} |
| 535 |
|
− <span |
| 536 |
|
− className="inline-block -rotate-2 rounded-md px-[8px] pb-[3px]" |
| 537 |
|
− style={{ background: p.inkbox, color: p.accent }} |
| 538 |
|
− > |
| 539 |
|
− {p.markBoxed} |
| 540 |
|
− </span> |
| 541 |
|
− </h3> |
| 542 |
|
− <p className="gk-display mt-3 text-[17px] font-bold uppercase tracking-[-0.01em]"> |
| 543 |
|
− {p.tagline} |
|
586 |
+ <section aria-label="Signes vitaux de l'écosystème" className="bleed band-ink mt-12 sm:mt-16"> |
|
587 |
+ <div className="mx-auto max-w-6xl px-4 py-9 sm:px-6 sm:py-12"> |
|
588 |
+ <div className="flex flex-wrap items-center justify-between gap-x-6 gap-y-1 border-b border-[rgba(245,243,238,0.18)] pb-4"> |
|
589 |
+ <p className="gk-mono flex items-center gap-2.5 text-[10.5px] font-bold tracking-[0.14em] uppercase text-lime"> |
|
590 |
+ <span className="pulse-dot !bg-lime" aria-hidden="true" /> |
|
591 |
+ Signes vitaux · mesurés sur les plateformes |
| 544 |
592 |
</p> |
| 545 |
|
− <p className="mt-3 text-[13.5px] leading-relaxed text-ink-2"> |
| 546 |
|
− {p.description} |
|
593 |
+ <p className="gk-mono text-[10px] tracking-[0.1em] uppercase text-[rgba(245,243,238,0.45)]"> |
|
594 |
+ Lu en direct · cache 10 min |
| 547 |
595 |
</p> |
| 548 |
|
− <div className="mt-5 flex flex-wrap gap-2"> |
| 549 |
|
− {p.chips.map((chip) => ( |
| 550 |
|
− <span key={chip} className="stat-chip !text-[11px]"> |
| 551 |
|
− {chip} |
| 552 |
|
− </span> |
| 553 |
|
− ))} |
| 554 |
|
− </div> |
| 555 |
596 |
</div> |
| 556 |
|
− <div> |
| 557 |
|
− <ul |
| 558 |
|
− className={`mt-5 space-y-2 border-t-[1.5px] border-dashed border-[rgba(20,24,20,0.25)] pt-5 ${ |
| 559 |
|
− wide ? "lg:mt-4 lg:border-t-0 lg:pt-0" : "" |
| 560 |
|
− }`} |
| 561 |
|
− > |
| 562 |
|
− {p.features.map((f) => ( |
| 563 |
|
− <li key={f} className="flex gap-3 text-[13.5px] text-ink-2"> |
| 564 |
|
− <span |
| 565 |
|
− aria-hidden="true" |
| 566 |
|
− className="mt-[7px] h-[5px] w-[5px] flex-none rotate-45 border border-ink" |
| 567 |
|
− style={{ background: p.accent }} |
| 568 |
|
− /> |
| 569 |
|
− {f} |
| 570 |
|
− </li> |
| 571 |
|
− ))} |
| 572 |
|
− </ul> |
| 573 |
|
− <a |
| 574 |
|
− href={p.url} |
| 575 |
|
− target="_blank" |
| 576 |
|
− rel="noopener noreferrer" |
| 577 |
|
− className="btn btn-primary mt-6 w-full sm:w-auto" |
| 578 |
|
− > |
| 579 |
|
− Visiter {p.domain} ↗ |
| 580 |
|
− </a> |
|
597 |
+ <div className="mt-8 grid grid-cols-2 gap-x-6 gap-y-8 sm:grid-cols-3 lg:grid-cols-6"> |
|
598 |
+ {vitals.map((s) => ( |
|
599 |
+ <div key={s.l}> |
|
600 |
+ <p className="gk-display tnum text-[clamp(26px,3.4vw,40px)] leading-none font-bold tracking-[-0.03em] text-paper"> |
|
601 |
+ {s.v} |
|
602 |
+ </p> |
|
603 |
+ <p className="gk-mono mt-2.5 text-[10px] leading-snug tracking-[0.06em] uppercase text-[rgba(245,243,238,0.55)]"> |
|
604 |
+ {s.l} |
|
605 |
+ </p> |
|
606 |
+ </div> |
|
607 |
+ ))} |
| 581 |
608 |
</div> |
| 582 |
609 |
</div> |
| 583 |
|
− </article> |
|
610 |
+ </section> |
| 584 |
611 |
); |
| 585 |
612 |
} |
| 586 |
613 |
|
| 646 |
673 |
}; |
| 647 |
674 |
} |
| 648 |
675 |
|
|
676 |
+/* ------------------------------------------------------------------ */ |
|
677 |
+/* Index des plateformes — une rangée éditoriale par agrégateur */ |
|
678 |
+/* ------------------------------------------------------------------ */ |
|
679 |
+ |
|
680 |
+function ProductRow({ p }: { p: Product }) { |
|
681 |
+ return ( |
|
682 |
+ <article className="idx-row py-8 sm:py-10"> |
|
683 |
+ <div className="grid gap-x-10 gap-y-5 lg:grid-cols-[96px_minmax(0,1.3fr)_minmax(0,1fr)]"> |
|
684 |
+ {/* Méta : numéro, marché, domaine */} |
|
685 |
+ <div className="flex flex-wrap items-baseline gap-x-4 gap-y-1 lg:block"> |
|
686 |
+ <span className="gk-mono tnum text-[15px] font-bold text-green"> |
|
687 |
+ {p.num} |
|
688 |
+ </span> |
|
689 |
+ <span className="klabel lg:mt-3 lg:block">{p.field}</span> |
|
690 |
+ {p.isNew && ( |
|
691 |
+ <span className="gk-mono inline-block rotate-1 rounded-[5px] bg-lime px-[7px] py-[2px] text-[9.5px] font-bold tracking-[0.08em] uppercase lg:mt-3"> |
|
692 |
+ Nouveau |
|
693 |
+ </span> |
|
694 |
+ )} |
|
695 |
+ </div> |
|
696 |
+ {/* Corps : wordmark, tagline, description, données live */} |
|
697 |
+ <div className="min-w-0"> |
|
698 |
+ <h3 className="gk-display inline-flex flex-wrap items-baseline gap-[5px] text-[30px] font-bold tracking-[-0.04em] sm:text-[36px]"> |
|
699 |
+ {p.markLeft} |
|
700 |
+ <span |
|
701 |
+ className="inline-block -rotate-2 rounded-md px-[8px] pb-[3px]" |
|
702 |
+ style={{ background: p.inkbox, color: p.accent }} |
|
703 |
+ > |
|
704 |
+ {p.markBoxed} |
|
705 |
+ </span> |
|
706 |
+ </h3> |
|
707 |
+ <p className="gk-display mt-2 text-[16px] font-bold uppercase tracking-[-0.01em]"> |
|
708 |
+ {p.tagline} |
|
709 |
+ </p> |
|
710 |
+ <p className="mt-3 max-w-xl text-[13.5px] leading-relaxed text-ink-2"> |
|
711 |
+ {p.description} |
|
712 |
+ </p> |
|
713 |
+ <DataLine items={p.chips} className="mt-4" /> |
|
714 |
+ </div> |
|
715 |
+ {/* Détails : features + lien */} |
|
716 |
+ <div className="lg:border-l lg:border-[rgba(20,24,20,0.18)] lg:pl-8"> |
|
717 |
+ <DiamondList items={p.features} accent={p.accent} /> |
|
718 |
+ <a |
|
719 |
+ href={p.url} |
|
720 |
+ target="_blank" |
|
721 |
+ rel="noopener noreferrer" |
|
722 |
+ className="cta-link cta-link--ext mt-5" |
|
723 |
+ > |
|
724 |
+ Visiter {p.domain.replace("www.", "")} |
|
725 |
+ </a> |
|
726 |
+ </div> |
|
727 |
+ </div> |
|
728 |
+ </article> |
|
729 |
+ ); |
|
730 |
+} |
|
731 |
+ |
| 649 |
732 |
/** Santé des dernières synchros, plateforme par plateforme (recent_syncs). |
| 650 |
733 |
* Une plateforme qui n'expose pas (ou plus) son journal disparaît de la |
| 651 |
|
− * liste — jamais de ligne inventée. */ |
| 652 |
|
−function SyncHealthCard({ m }: { m: LiveMetrics }) { |
|
734 |
+ * liste — jamais de ligne inventée. Version sombre, salle des machines. */ |
|
735 |
+function SyncHealth({ m }: { m: LiveMetrics }) { |
| 653 |
736 |
const rows = [ |
| 654 |
737 |
{ name: "Lou·Ka", syncs: m.louka.syncs }, |
| 655 |
738 |
{ name: "Immo·Ka", syncs: m.immoka.syncs }, |
| 663 |
746 |
); |
| 664 |
747 |
if (rows.length === 0) return null; |
| 665 |
748 |
return ( |
| 666 |
|
− <div className="gk-card p-5 sm:p-7"> |
| 667 |
|
− <p className="klabel">Santé des syncs · dernières passes des connecteurs</p> |
| 668 |
|
− <h3 className="gk-display mt-2 text-[17px] font-bold uppercase"> |
|
749 |
+ <div> |
|
750 |
+ <p className="gk-mono text-[10.5px] font-bold tracking-[0.14em] uppercase text-lime"> |
|
751 |
+ Santé des syncs · dernières passes |
|
752 |
+ </p> |
|
753 |
+ <h3 className="gk-display mt-3 text-[17px] font-bold uppercase text-paper"> |
| 669 |
754 |
La machine, prise sur le fait |
| 670 |
755 |
</h3> |
| 671 |
|
− <div className="mt-5 space-y-3"> |
| 672 |
|
− {rows.map(({ name, syncs: s }) => ( |
|
756 |
+ <div className="mt-5"> |
|
757 |
+ {rows.map(({ name, syncs: s }, i) => ( |
| 673 |
758 |
<div |
| 674 |
759 |
key={name} |
| 675 |
|
− className="flex flex-wrap items-baseline justify-between gap-x-4 gap-y-1 border-b border-dashed border-[rgba(20,24,20,0.18)] pb-2" |
|
760 |
+ className={`flex flex-wrap items-baseline justify-between gap-x-4 gap-y-1 py-[9px] ${ |
|
761 |
+ i > 0 ? "border-t border-[rgba(245,243,238,0.14)]" : "" |
|
762 |
+ }`} |
| 676 |
763 |
> |
| 677 |
|
− <span className="gk-display text-[13.5px] font-bold whitespace-nowrap"> |
|
764 |
+ <span className="gk-display text-[13.5px] font-bold whitespace-nowrap text-paper"> |
| 678 |
765 |
{name} |
| 679 |
766 |
</span> |
| 680 |
|
− <span className="gk-mono text-[11.5px] whitespace-nowrap"> |
| 681 |
|
− <span className={s.ok === s.runs ? "font-bold text-green" : "font-bold"}> |
|
767 |
+ <span className="gk-mono tnum text-[11.5px] whitespace-nowrap"> |
|
768 |
+ <span |
|
769 |
+ className={ |
|
770 |
+ s.ok === s.runs ? "font-bold text-lime" : "font-bold text-paper" |
|
771 |
+ } |
|
772 |
+ > |
| 682 |
773 |
{s.ok}/{s.runs} OK |
| 683 |
774 |
</span> |
| 684 |
|
− <span className="text-ink-3"> |
|
775 |
+ <span className="text-[rgba(245,243,238,0.5)]"> |
| 685 |
776 |
{" "} |
| 686 |
777 |
· +{fmtInt(s.added)} · ~{fmtInt(s.updated)} · −{fmtInt(s.removed)} |
| 687 |
778 |
</span> |
| 689 |
780 |
</div> |
| 690 |
781 |
))} |
| 691 |
782 |
</div> |
| 692 |
|
− <p className="gk-mono mt-4 text-[10.5px] leading-relaxed text-ink-3"> |
|
783 |
+ <p className="gk-mono mt-4 text-[10px] leading-relaxed text-[rgba(245,243,238,0.45)]"> |
| 693 |
784 |
Journal réel des dernières synchronisations publié par chaque |
| 694 |
|
− plateforme : passes réussies, annonces ajoutées (+), mises à jour (~) |
| 695 |
|
− et retirées (−). Lu en direct, cache 10 min. |
|
785 |
+ plateforme : passes réussies, ajouts (+), mises à jour (~), retraits (−). |
| 696 |
786 |
</p> |
| 697 |
787 |
</div> |
| 698 |
788 |
); |
| 702 |
792 |
const m = await getLiveMetrics(); |
| 703 |
793 |
const chips = liveChips(m); |
| 704 |
794 |
return ( |
| 705 |
|
− <main className="mx-auto max-w-6xl px-4 pb-16 sm:px-6"> |
| 706 |
|
− {/* ---------- Héros ---------- */} |
| 707 |
|
− <section className="grid items-start gap-8 pt-12 sm:pt-14 lg:grid-cols-[minmax(0,1.4fr)_minmax(0,1fr)]"> |
| 708 |
|
− <div className="min-w-0"> |
| 709 |
|
− <p className="kicker rise"> |
| 710 |
|
− Holding d’agrégateurs automatisés · Québec |
|
795 |
+ <main className="mx-auto max-w-6xl px-4 pb-20 sm:px-6"> |
|
796 |
+ {/* ================= Héros ================= */} |
|
797 |
+ <section className="pt-9 sm:pt-14"> |
|
798 |
+ <div className="rise rule-ink flex flex-wrap items-baseline justify-between gap-x-6 gap-y-1 pt-3"> |
|
799 |
+ <p className="gk-mono text-[10.5px] font-bold tracking-[0.16em] uppercase text-ink-2"> |
|
800 |
+ Groupe KA — Holding d'agrégateurs automatisés |
| 711 |
801 |
</p> |
| 712 |
|
− <h1 className="gk-display rise mt-4 max-w-4xl text-[clamp(34px,6.4vw,68px)] leading-[0.98] font-bold tracking-[-0.035em] uppercase [animation-delay:0.08s]"> |
| 713 |
|
− Mille sites.{" "} |
| 714 |
|
− <span className="outline-txt">Un seul</span>{" "} |
| 715 |
|
− <span className="hl">·Ka.</span> |
| 716 |
|
− </h1> |
| 717 |
|
− <p className="rise mt-5 max-w-xl text-[16.5px] text-ink-2 [animation-delay:0.16s]"> |
| 718 |
|
− <strong className="text-ink">Ka, c'est l'agrégation.</strong>{" "} |
| 719 |
|
− Groupe KA est un holding d'agrégateurs entièrement |
| 720 |
|
− automatisés : des centaines de connecteurs lisent les sites à la |
| 721 |
|
− source, normalisent la donnée et se resynchronisent seuls, jour et |
| 722 |
|
− nuit. Se loger, acheter, évaluer, rouler, consommer local, faire |
| 723 |
|
− l'épicerie, manger au resto, sortir, suivre les créateurs |
| 724 |
|
− d'ici, chercher — dix agrégateurs et un moteur de recherche, |
| 725 |
|
− zéro saisie manuelle, zéro boîte noire. |
|
802 |
+ <p className="gk-mono text-[10.5px] tracking-[0.16em] uppercase text-ink-3"> |
|
803 |
+ Québec · 100 % automatisé · zéro boîte noire |
| 726 |
804 |
</p> |
| 727 |
|
− <div className="rise mt-7 flex gap-3 overflow-x-auto pb-2 [animation-delay:0.24s]"> |
| 728 |
|
− <span className="stat-chip"> |
| 729 |
|
− <span className="pulse-dot" aria-hidden="true" /> |
| 730 |
|
− 10 agrégateurs en ligne |
| 731 |
|
− </span> |
| 732 |
|
− <span className="stat-chip">1 moteur de recherche québécois</span> |
| 733 |
|
− <span className="stat-chip">{fmtInt(m.totals.connectors)}+ connecteurs sources</span> |
| 734 |
|
− <span className="stat-chip">22 M+ d'observations immobilières</span> |
| 735 |
|
− <span className="stat-chip"> |
| 736 |
|
− {fmtPlus(m.totals.items)} annonces, produits & événements |
| 737 |
|
− </span> |
| 738 |
|
− <span className="stat-chip">100 % données à la source</span> |
| 739 |
|
− </div> |
| 740 |
|
− <div className="rise mt-6 flex flex-wrap gap-3 [animation-delay:0.3s]"> |
| 741 |
|
− <a href="#flux" className="btn btn-primary"> |
| 742 |
|
− Voir comment KA agrège ↓ |
| 743 |
|
− </a> |
| 744 |
|
− <a href="#produits" className="btn btn-ghost"> |
| 745 |
|
− Les dix plateformes |
| 746 |
|
− </a> |
|
805 |
+ </div> |
|
806 |
+ <h1 className="gk-display rise mt-8 text-[clamp(44px,10.5vw,118px)] leading-[0.92] font-bold tracking-[-0.045em] uppercase [animation-delay:0.08s]"> |
|
807 |
+ Mille sites. |
|
808 |
+ <br /> |
|
809 |
+ <span className="outline-txt">Un seul</span>{" "} |
|
810 |
+ <span className="hl">·Ka.</span> |
|
811 |
+ </h1> |
|
812 |
+ <div className="mt-10 grid items-start gap-10 lg:grid-cols-[minmax(0,1.35fr)_minmax(0,1fr)] lg:gap-16"> |
|
813 |
+ <div className="min-w-0"> |
|
814 |
+ <p className="rise max-w-xl text-[16.5px] leading-relaxed text-ink-2 [animation-delay:0.16s]"> |
|
815 |
+ <strong className="text-ink">Ka, c'est l'agrégation.</strong>{" "} |
|
816 |
+ Des centaines de connecteurs lisent les sites à la source, |
|
817 |
+ normalisent la donnée et se resynchronisent seuls, jour et nuit. |
|
818 |
+ Se loger, acheter, évaluer, rouler, consommer local, faire |
|
819 |
+ l'épicerie, manger au resto, sortir, suivre les créateurs |
|
820 |
+ d'ici, chercher — dix agrégateurs et un moteur de recherche, |
|
821 |
+ zéro saisie manuelle. |
|
822 |
+ </p> |
|
823 |
+ <div className="rise mt-8 flex flex-wrap items-center gap-x-7 gap-y-4 [animation-delay:0.24s]"> |
|
824 |
+ <a href="#flux" className="btn btn-primary"> |
|
825 |
+ Voir comment KA agrège ↓ |
|
826 |
+ </a> |
|
827 |
+ <a href="#produits" className="cta-link"> |
|
828 |
+ Les onze plateformes |
|
829 |
+ </a> |
|
830 |
+ </div> |
| 747 |
831 |
</div> |
|
832 |
+ <KaDefinition /> |
| 748 |
833 |
</div> |
| 749 |
|
− <KaDefinition /> |
| 750 |
834 |
</section> |
| 751 |
835 |
|
| 752 |
|
− {/* ---------- Trouve·Ka — le produit phare ---------- */} |
|
836 |
+ {/* ================= Signes vitaux (bande pleine largeur) ================= */} |
|
837 |
+ <VitalsBand m={m} /> |
|
838 |
+ |
|
839 |
+ {/* ================= Trouve·Ka — le produit phare ================= */} |
| 753 |
840 |
<Section |
| 754 |
841 |
id="trouve-ka" |
|
842 |
+ index="01" |
| 755 |
843 |
kicker="Le produit phare · moteur de recherche" |
| 756 |
844 |
title={ |
| 757 |
845 |
<> |
| 758 |
846 |
Trouve·Ka. <span className="hl">Cherche tout le groupe.</span> |
| 759 |
847 |
</> |
| 760 |
848 |
} |
|
849 |
+ lead={ |
|
850 |
+ <> |
|
851 |
+ Les agrégateurs ·Ka couvrent chacun un marché. Trouve·Ka les |
|
852 |
+ rassemble : c'est le moteur de recherche du groupe, dont |
|
853 |
+ l'index est bâti exclusivement sur les sites de |
|
854 |
+ l'écosystème — son robot les parcourt jour et nuit, guidé par |
|
855 |
+ leurs sitemaps, et n'indexe qu'eux. |
|
856 |
+ </> |
|
857 |
+ } |
| 761 |
858 |
> |
| 762 |
|
− <p className="mt-3 max-w-xl text-[14.5px] text-ink-2"> |
| 763 |
|
− Les agrégateurs ·Ka couvrent chacun un marché. Trouve·Ka les |
| 764 |
|
− rassemble : c'est le moteur de recherche du groupe, dont |
| 765 |
|
− l'index est bâti exclusivement sur les sites de |
| 766 |
|
− l'écosystème — son robot les parcourt jour et nuit, guidé par |
| 767 |
|
− leurs sitemaps, et n'indexe qu'eux. |
| 768 |
|
− </p> |
| 769 |
|
− <div className="mt-7 grid items-stretch gap-6 lg:grid-cols-[minmax(0,1.15fr)_minmax(0,1fr)]"> |
| 770 |
|
− <article className="gk-card gk-card-hover p-5 sm:p-7"> |
|
859 |
+ <div className="mt-10 grid items-start gap-12 lg:grid-cols-[minmax(0,1.2fr)_minmax(0,1fr)] lg:gap-14"> |
|
860 |
+ <div className="min-w-0"> |
| 771 |
861 |
<div className="flex flex-wrap items-baseline justify-between gap-3"> |
| 772 |
862 |
<span className="gk-mono text-[12px] font-bold text-green"> |
| 773 |
863 |
MOTEUR |
| 774 |
864 |
</span> |
| 775 |
865 |
<span className="klabel">www.trouve-ka.com</span> |
| 776 |
866 |
</div> |
| 777 |
|
− <h3 className="gk-display mt-4 inline-flex items-baseline gap-[5px] text-[32px] font-bold tracking-[-0.04em] sm:text-[38px]"> |
|
867 |
+ <h3 className="gk-display mt-3 inline-flex items-baseline gap-[5px] text-[34px] font-bold tracking-[-0.04em] sm:text-[42px]"> |
| 778 |
868 |
Trouve |
| 779 |
869 |
<span |
| 780 |
870 |
className="inline-block -rotate-2 rounded-md px-[8px] pb-[3px]" |
| 783 |
873 |
Ka |
| 784 |
874 |
</span> |
| 785 |
875 |
</h3> |
| 786 |
|
− <p className="gk-display mt-3 text-[17px] font-bold uppercase tracking-[-0.01em]"> |
|
876 |
+ <p className="gk-display mt-2 text-[17px] font-bold uppercase tracking-[-0.01em]"> |
| 787 |
877 |
Tout l'écosystème KA, dans une seule barre de recherche. |
| 788 |
878 |
</p> |
| 789 |
879 |
{/* Barre de recherche factice — l'objet lui-même */} |
| 790 |
880 |
<div |
| 791 |
881 |
aria-hidden="true" |
| 792 |
|
− className="mt-5 flex items-center gap-3 rounded-full border-2 border-ink bg-white px-5 py-3 shadow-[4px_4px_0_rgba(20,24,20,0.85)]" |
|
882 |
+ className="mt-6 flex items-center gap-3 rounded-full border-2 border-ink bg-white px-5 py-3 shadow-[4px_4px_0_rgba(20,24,20,0.8)]" |
| 793 |
883 |
> |
| 794 |
884 |
<span className="gk-mono text-[15px] font-bold">⌕</span> |
| 795 |
885 |
<span className="gk-mono flex-1 truncate text-[12.5px] text-ink-3"> |
| 802 |
892 |
Chercher |
| 803 |
893 |
</span> |
| 804 |
894 |
</div> |
| 805 |
|
− <div className="mt-5 flex flex-wrap gap-2"> |
| 806 |
|
− <span className="stat-chip !text-[11px]"> |
| 807 |
|
− {fmtPlus(m.trouveka.pages)} pages indexées |
| 808 |
|
− </span> |
| 809 |
|
− <span className="stat-chip !text-[11px]"> |
| 810 |
|
− {fmtInt(m.trouveka.domains)} sites du groupe |
| 811 |
|
− </span> |
| 812 |
|
− <span className="stat-chip !text-[11px]"> |
| 813 |
|
− {fmtInt(m.trouveka.indexedLastHour)} pages indexées / heure |
| 814 |
|
− </span> |
| 815 |
|
− <span className="stat-chip !text-[11px]">100 % Groupe KA</span> |
| 816 |
|
− </div> |
| 817 |
|
− <ul className="mt-5 space-y-2 border-t-[1.5px] border-dashed border-[rgba(20,24,20,0.25)] pt-5"> |
| 818 |
|
− {[ |
|
895 |
+ <DataLine |
|
896 |
+ className="mt-5" |
|
897 |
+ items={[ |
|
898 |
+ `${fmtPlus(m.trouveka.pages)} pages indexées`, |
|
899 |
+ `${fmtInt(m.trouveka.domains)} sites du groupe`, |
|
900 |
+ `${fmtInt(m.trouveka.indexedLastHour)} pages/heure`, |
|
901 |
+ "100 % Groupe KA", |
|
902 |
+ ]} |
|
903 |
+ /> |
|
904 |
+ <DiamondList |
|
905 |
+ className="rule-hair mt-5 pt-5" |
|
906 |
+ items={[ |
| 819 |
907 |
"Résultats 100 % Groupe KA — logements, propriétés, emplois, restos, événements, produits, véhicules, créateurs", |
| 820 |
908 |
`État du moteur public : ${fmtInt(m.trouveka.frontierPending)} pages en file de crawl, ${fmtDec(m.trouveka.embeddingCoverage * 100)} % de l'index couvert par la recherche sémantique`, |
| 821 |
909 |
"Une fiche publiée sur un site ·Ka devient cherchable en quelques secondes", |
| 822 |
910 |
"Robot dédié, documenté, qui respecte robots.txt", |
| 823 |
|
− ].map((f) => ( |
| 824 |
|
− <li key={f} className="flex gap-3 text-[13.5px] text-ink-2"> |
| 825 |
|
− <span |
| 826 |
|
− aria-hidden="true" |
| 827 |
|
− className="mt-[7px] h-[5px] w-[5px] flex-none rotate-45 border border-ink bg-lime" |
| 828 |
|
− /> |
| 829 |
|
− {f} |
| 830 |
|
− </li> |
| 831 |
|
− ))} |
| 832 |
|
− </ul> |
| 833 |
|
− <div className="mt-6 flex flex-wrap gap-3"> |
|
911 |
+ ]} |
|
912 |
+ /> |
|
913 |
+ <div className="mt-7 flex flex-wrap items-center gap-x-7 gap-y-4"> |
| 834 |
914 |
<a |
| 835 |
915 |
href="https://www.trouve-ka.com" |
| 836 |
916 |
target="_blank" |
| 837 |
917 |
rel="noopener noreferrer" |
| 838 |
|
− className="btn btn-primary w-full sm:w-auto" |
|
918 |
+ className="btn btn-primary" |
| 839 |
919 |
> |
| 840 |
|
− Chercher sur www.trouve-ka.com ↗ |
|
920 |
+ Chercher sur trouve-ka.com ↗ |
| 841 |
921 |
</a> |
| 842 |
|
− <a href="/recherche" className="btn w-full sm:w-auto"> |
|
922 |
+ <a href="/recherche" className="cta-link"> |
| 843 |
923 |
Chercher sans quitter groupe-ka.com |
| 844 |
924 |
</a> |
| 845 |
925 |
</div> |
| 846 |
|
− </article> |
| 847 |
|
− <div className="gk-card !bg-ink p-6 text-paper sm:p-7"> |
|
926 |
+ </div> |
|
927 |
+ <div className="band-ink rounded-[18px] p-6 sm:p-8"> |
| 848 |
928 |
<p className="kicker !text-lime"> |
| 849 |
929 |
Pourquoi un moteur de recherche ? |
| 850 |
930 |
</p> |
| 851 |
|
− <p className="gk-display mt-4 text-[clamp(24px,3.2vw,34px)] leading-[1.05] font-bold tracking-[-0.03em] uppercase"> |
|
931 |
+ <p className="gk-display mt-5 text-[clamp(24px,3.2vw,34px)] leading-[1.05] font-bold tracking-[-0.03em] uppercase"> |
| 852 |
932 |
Les grands moteurs |
| 853 |
933 |
<br /> |
| 854 |
934 |
cherchent le monde. |
| 855 |
935 |
<br /> |
| 856 |
936 |
<span className="text-lime">Trouve·Ka cherche le Groupe KA.</span> |
| 857 |
937 |
</p> |
| 858 |
|
− <p className="mt-4 max-w-md text-[13.5px] text-[rgba(245,243,238,0.75)]"> |
|
938 |
+ <p className="mt-4 max-w-md text-[13.5px] leading-relaxed text-[rgba(245,243,238,0.75)]"> |
| 859 |
939 |
Un 4½ sur Lou·Ka, une érablière sur Fabri·Ka, un festival sur |
| 860 |
940 |
Sorti·Ka : des millions de fiches réparties sur les sites du |
| 861 |
941 |
groupe — et une seule barre pour toutes les trouver. C'est |
| 862 |
942 |
l'agrégation poussée à sa conclusion logique — un index |
| 863 |
943 |
maison pour tout l'écosystème. |
| 864 |
944 |
</p> |
| 865 |
|
− <ul className="mt-5 space-y-2 border-t border-[rgba(245,243,238,0.15)] pt-5 text-[13px] text-[rgba(245,243,238,0.75)]"> |
| 866 |
|
− {[ |
|
945 |
+ <DiamondList |
|
946 |
+ dark |
|
947 |
+ className="mt-5 border-t border-[rgba(245,243,238,0.15)] pt-5" |
|
948 |
+ items={[ |
| 867 |
949 |
"Crawler maison + index de recherche dédié", |
| 868 |
950 |
"Nourri par les sitemaps des sites de l'écosystème", |
| 869 |
951 |
"Zéro publicité, zéro profilage — comme tout le groupe", |
| 870 |
|
− ].map((f) => ( |
| 871 |
|
− <li key={f} className="flex gap-3"> |
| 872 |
|
− <span |
| 873 |
|
− aria-hidden="true" |
| 874 |
|
− className="mt-[6px] h-[5px] w-[5px] flex-none rotate-45 bg-lime" |
| 875 |
|
− /> |
| 876 |
|
− {f} |
| 877 |
|
− </li> |
| 878 |
|
− ))} |
| 879 |
|
− </ul> |
|
952 |
+ ]} |
|
953 |
+ /> |
| 880 |
954 |
</div> |
| 881 |
955 |
</div> |
| 882 |
956 |
</Section> |
| 883 |
957 |
|
| 884 |
|
− {/* ---------- La figure d'agrégation ---------- */} |
|
958 |
+ {/* ================= La figure d'agrégation ================= */} |
| 885 |
959 |
<Section |
| 886 |
960 |
id="flux" |
|
961 |
+ index="02" |
| 887 |
962 |
kicker="Le geste fondateur · agréger" |
| 888 |
963 |
title={ |
| 889 |
964 |
<> |
| 890 |
965 |
Plein de sites. <span className="hl">Une seule flèche.</span> |
| 891 |
966 |
</> |
| 892 |
967 |
} |
|
968 |
+ lead={ |
|
969 |
+ <> |
|
970 |
+ Chaque plateforme du groupe fonctionne sur le même schéma : un |
|
971 |
+ faisceau de connecteurs part vers des centaines de sites sources, |
|
972 |
+ ramène la donnée brute, et KA la transforme en un seul endroit |
|
973 |
+ propre. Voici la machine, à découvert. |
|
974 |
+ </> |
|
975 |
+ } |
| 893 |
976 |
> |
| 894 |
|
− <p className="mt-3 max-w-xl text-[14.5px] text-ink-2"> |
| 895 |
|
− Chaque plateforme du groupe fonctionne sur le même schéma : un |
| 896 |
|
− faisceau de connecteurs part vers des centaines de sites sources, |
| 897 |
|
− ramène la donnée brute, et KA la transforme en un seul endroit |
| 898 |
|
− propre. Voici la machine, à découvert. |
| 899 |
|
− </p> |
| 900 |
|
− <div className="mt-5 flex flex-wrap items-center gap-3"> |
|
977 |
+ <div className="mt-6 flex flex-wrap items-center gap-x-6 gap-y-3"> |
| 901 |
978 |
<a |
| 902 |
979 |
href="/documents/groupe-ka-agregation.pdf" |
| 903 |
980 |
target="_blank" |
| 904 |
981 |
rel="noopener noreferrer" |
| 905 |
|
− className="btn btn-ghost" |
|
982 |
+ className="cta-link" |
| 906 |
983 |
> |
| 907 |
|
− ⤓ Télécharger « L'agrégation, expliquée » — PDF · 12 pages |
|
984 |
+ ⤓ « L'agrégation, expliquée » — PDF · 12 pages |
| 908 |
985 |
</a> |
| 909 |
986 |
<span className="gk-mono text-[11px] text-ink-3"> |
| 910 |
987 |
Tous les schémas du groupe, en un document |
| 911 |
988 |
</span> |
| 912 |
989 |
</div> |
| 913 |
990 |
<AggregationFigure /> |
| 914 |
|
− <div className="mt-6 grid items-start gap-6 lg:grid-cols-2"> |
|
991 |
+ <div className="mt-12 grid items-start gap-12 lg:grid-cols-2 lg:gap-14"> |
| 915 |
992 |
<PipelineFigure /> |
| 916 |
993 |
<CycleFigure /> |
| 917 |
994 |
</div> |
| 918 |
995 |
</Section> |
| 919 |
996 |
|
| 920 |
|
− {/* ---------- Les chiffres ---------- */} |
|
997 |
+ {/* ================= Les chiffres ================= */} |
| 921 |
998 |
<Section |
| 922 |
999 |
id="chiffres" |
|
1000 |
+ index="03" |
| 923 |
1001 |
kicker="La preuve par les nombres · rien de caché" |
| 924 |
1002 |
title={ |
| 925 |
1003 |
<> |
| 926 |
1004 |
Ce que ·Ka <span className="hl">agrège, compté</span> |
| 927 |
1005 |
</> |
| 928 |
1006 |
} |
|
1007 |
+ lead={ |
|
1008 |
+ <> |
|
1009 |
+ Un agrégateur se juge à ce qu'il agrège. Voici l'état des |
|
1010 |
+ lieux, mesuré sur les plateformes elles-mêmes — inventaire vivant, |
|
1011 |
+ flotte de connecteurs, couverture des moteurs d'évaluation. |
|
1012 |
+ </> |
|
1013 |
+ } |
| 929 |
1014 |
> |
| 930 |
|
− <p className="mt-3 max-w-xl text-[14.5px] text-ink-2"> |
| 931 |
|
− Un agrégateur se juge à ce qu'il agrège. Voici l'état des |
| 932 |
|
− lieux, mesuré sur les plateformes elles-mêmes — inventaire vivant, |
| 933 |
|
− flotte de connecteurs, couverture des moteurs d'évaluation. |
| 934 |
|
− </p> |
| 935 |
|
− <div className="mt-7 grid items-stretch gap-6 lg:grid-cols-2"> |
|
1015 |
+ <div className="mt-12 grid items-start gap-12 lg:grid-cols-2 lg:gap-14"> |
| 936 |
1016 |
<InventoryBars |
| 937 |
1017 |
data={[ |
| 938 |
1018 |
{ name: "Fabri·Ka", value: m.fabrika.products, unit: "produits québécois" }, |
| 959 |
1039 |
total={m.totals.connectors} |
| 960 |
1040 |
/> |
| 961 |
1041 |
</div> |
| 962 |
|
− <div className="mt-6 grid items-start gap-6 lg:grid-cols-2"> |
| 963 |
|
− <div className="gk-card !bg-ink p-6 text-paper sm:p-7"> |
| 964 |
|
− <p className="kicker !text-lime">L'équation ·Ka</p> |
| 965 |
|
− <p className="gk-display mt-4 text-[clamp(26px,3.5vw,38px)] leading-[1.05] font-bold tracking-[-0.03em] uppercase"> |
| 966 |
|
− 1 000+ sites lus |
| 967 |
|
− <br /> |
| 968 |
|
− <span className="text-lime"> |
| 969 |
|
− → {fmtInt(m.totals.connectors)}+ connecteurs |
| 970 |
|
− </span> |
| 971 |
|
− <br />→ 10 plateformes |
| 972 |
|
− </p> |
| 973 |
|
− <p className="mt-4 max-w-md text-[13.5px] text-[rgba(245,243,238,0.75)]"> |
| 974 |
|
− La donnée entre éparpillée, elle ressort rangée. Entre les deux, |
| 975 |
|
− aucune main humaine — c'est le suffixe ·Ka qui travaille. |
| 976 |
|
− </p> |
| 977 |
|
− </div> |
|
1042 |
+ |
|
1043 |
+ <div className="mt-14"> |
| 978 |
1044 |
<CoverageTiles vraiPrixUnits={m.vraiprix.units} /> |
| 979 |
1045 |
</div> |
| 980 |
|
− <div className="mt-6 grid items-stretch gap-6 lg:grid-cols-2"> |
| 981 |
|
− <SyncHealthCard m={m} /> |
| 982 |
|
− {/* Croisement inter-plateformes calculé par Immo·Ka : prix demandé |
| 983 |
|
− vs évaluation municipale (Vrai-Prix), toutes bannières. */} |
| 984 |
|
− <div className="gk-card !bg-ink p-6 text-paper sm:p-7"> |
| 985 |
|
− <p className="kicker !text-lime"> |
| 986 |
|
− Immo·Ka × Vrai-Prix · le croisement |
| 987 |
|
− </p> |
| 988 |
|
− <p className="gk-display mt-4 text-[clamp(26px,3.5vw,38px)] leading-[1.05] font-bold tracking-[-0.03em] uppercase"> |
| 989 |
|
− Prix demandé : |
| 990 |
|
− <br /> |
| 991 |
|
− <span className="text-lime"> |
| 992 |
|
− +{fmtDec(m.immoka.vraiprix.medianDeltaPct)} % |
| 993 |
|
− </span>{" "} |
| 994 |
|
− au-dessus |
| 995 |
|
− <br /> |
| 996 |
|
− de l'évaluation |
| 997 |
|
− </p> |
| 998 |
|
− <p className="mt-4 max-w-md text-[13.5px] text-[rgba(245,243,238,0.75)]"> |
| 999 |
|
− Sur {fmtInt(m.immoka.vraiprix.n)} annonces croisées avec |
| 1000 |
|
− l'évaluation municipale (Vrai-Prix), l'écart médian |
| 1001 |
|
− entre le prix demandé et l'évaluation est de + |
| 1002 |
|
− {fmtDec(m.immoka.vraiprix.medianDeltaPct)} %. C'est ce que |
| 1003 |
|
− deux agrégateurs qui se parlent peuvent mesurer — personne |
| 1004 |
|
− d'autre ne le publie. |
| 1005 |
|
− </p> |
| 1006 |
|
− <ul className="mt-5 space-y-2 border-t border-[rgba(245,243,238,0.15)] pt-5 text-[13px] text-[rgba(245,243,238,0.75)]"> |
| 1007 |
|
− {[ |
| 1008 |
|
− `${fmtDec(m.immoka.vraiprix.pctSur10)} % des annonces à plus de +10 % de l'évaluation`, |
| 1009 |
|
− `${fmtDec(m.immoka.vraiprix.pctJuste)} % proches de l'évaluation`, |
| 1010 |
|
− `${fmtDec(m.immoka.vraiprix.pctSous5)} % nettement sous l'évaluation`, |
| 1011 |
|
− ].map((f) => ( |
| 1012 |
|
− <li key={f} className="flex gap-3"> |
| 1013 |
|
− <span |
| 1014 |
|
− aria-hidden="true" |
| 1015 |
|
− className="mt-[6px] h-[5px] w-[5px] flex-none rotate-45 bg-lime" |
| 1016 |
|
− /> |
| 1017 |
|
− {f} |
| 1018 |
|
− </li> |
| 1019 |
|
− ))} |
| 1020 |
|
− </ul> |
|
1046 |
+ |
|
1047 |
+ {/* ---- La salle des machines : bande sombre pleine largeur ---- */} |
|
1048 |
+ <div className="bleed band-ink mt-16"> |
|
1049 |
+ <div className="mx-auto max-w-6xl px-4 py-12 sm:px-6 sm:py-16"> |
|
1050 |
+ <div className="flex flex-wrap items-baseline justify-between gap-x-6 gap-y-1 border-b border-[rgba(245,243,238,0.18)] pb-4"> |
|
1051 |
+ <p className="gk-mono text-[10.5px] font-bold tracking-[0.14em] uppercase text-lime"> |
|
1052 |
+ La salle des machines · mesures croisées |
|
1053 |
+ </p> |
|
1054 |
+ <p className="gk-mono text-[10px] tracking-[0.1em] uppercase text-[rgba(245,243,238,0.45)]"> |
|
1055 |
+ Personne d'autre ne publie ça |
|
1056 |
+ </p> |
|
1057 |
+ </div> |
|
1058 |
+ <div className="mt-10 grid gap-12 lg:grid-cols-3 lg:gap-10"> |
|
1059 |
+ <div> |
|
1060 |
+ <p className="gk-mono text-[10.5px] font-bold tracking-[0.14em] uppercase text-lime"> |
|
1061 |
+ L'équation ·Ka |
|
1062 |
+ </p> |
|
1063 |
+ <p className="gk-display mt-4 text-[clamp(26px,3.2vw,36px)] leading-[1.08] font-bold tracking-[-0.03em] uppercase text-paper"> |
|
1064 |
+ 1 000+ sites lus |
|
1065 |
+ <br /> |
|
1066 |
+ <span className="text-lime"> |
|
1067 |
+ → {fmtInt(m.totals.connectors)}+ connecteurs |
|
1068 |
+ </span> |
|
1069 |
+ <br />→ 10 plateformes |
|
1070 |
+ </p> |
|
1071 |
+ <p className="mt-4 max-w-md text-[13.5px] leading-relaxed text-[rgba(245,243,238,0.7)]"> |
|
1072 |
+ La donnée entre éparpillée, elle ressort rangée. Entre les |
|
1073 |
+ deux, aucune main humaine — c'est le suffixe ·Ka qui |
|
1074 |
+ travaille. |
|
1075 |
+ </p> |
|
1076 |
+ </div> |
|
1077 |
+ <div> |
|
1078 |
+ <p className="gk-mono text-[10.5px] font-bold tracking-[0.14em] uppercase text-lime"> |
|
1079 |
+ Immo·Ka × Vrai-Prix · le croisement |
|
1080 |
+ </p> |
|
1081 |
+ <p className="gk-display tnum mt-4 text-[clamp(40px,5vw,58px)] leading-none font-bold tracking-[-0.04em] text-lime"> |
|
1082 |
+ +{fmtDec(m.immoka.vraiprix.medianDeltaPct)} % |
|
1083 |
+ </p> |
|
1084 |
+ <p className="gk-display mt-2 text-[14px] font-bold uppercase text-paper"> |
|
1085 |
+ Prix demandé vs évaluation municipale |
|
1086 |
+ </p> |
|
1087 |
+ <p className="mt-3 max-w-md text-[13px] leading-relaxed text-[rgba(245,243,238,0.7)]"> |
|
1088 |
+ Sur {fmtInt(m.immoka.vraiprix.n)} annonces croisées avec |
|
1089 |
+ l'évaluation municipale (Vrai-Prix), l'écart médian |
|
1090 |
+ entre le prix demandé et l'évaluation. C'est ce que |
|
1091 |
+ deux agrégateurs qui se parlent peuvent mesurer. |
|
1092 |
+ </p> |
|
1093 |
+ <DiamondList |
|
1094 |
+ dark |
|
1095 |
+ className="mt-4 border-t border-[rgba(245,243,238,0.15)] pt-4" |
|
1096 |
+ items={[ |
|
1097 |
+ `${fmtDec(m.immoka.vraiprix.pctSur10)} % des annonces à plus de +10 % de l'évaluation`, |
|
1098 |
+ `${fmtDec(m.immoka.vraiprix.pctJuste)} % proches de l'évaluation`, |
|
1099 |
+ `${fmtDec(m.immoka.vraiprix.pctSous5)} % nettement sous l'évaluation`, |
|
1100 |
+ ]} |
|
1101 |
+ /> |
|
1102 |
+ </div> |
|
1103 |
+ <SyncHealth m={m} /> |
|
1104 |
+ </div> |
| 1021 |
1105 |
</div> |
| 1022 |
1106 |
</div> |
| 1023 |
1107 |
</Section> |
| 1024 |
1108 |
|
| 1025 |
|
− {/* ---------- Produits ---------- */} |
|
1109 |
+ {/* ================= L'index des plateformes ================= */} |
| 1026 |
1110 |
<Section |
| 1027 |
1111 |
id="produits" |
| 1028 |
|
− kicker="Dix agrégateurs · un écosystème" |
|
1112 |
+ index="04" |
|
1113 |
+ kicker="Onze plateformes · un écosystème" |
| 1029 |
1114 |
title={ |
| 1030 |
1115 |
<> |
| 1031 |
1116 |
Ce que nous <span className="hl">agrégeons</span> |
| 1032 |
1117 |
</> |
| 1033 |
1118 |
} |
|
1119 |
+ lead={ |
|
1120 |
+ <> |
|
1121 |
+ Chaque agrégateur attaque un angle mort du quotidien québécois : se |
|
1122 |
+ loger, acheter, évaluer, rouler, consommer local, faire |
|
1123 |
+ l'épicerie, manger au resto, sortir, suivre les créateurs |
|
1124 |
+ d'ici. Aucune saisie manuelle — les plateformes se |
|
1125 |
+ maintiennent elles-mêmes, annonce par annonce, prix par prix. |
|
1126 |
+ </> |
|
1127 |
+ } |
| 1034 |
1128 |
> |
| 1035 |
|
− <p className="mt-3 max-w-xl text-[14.5px] text-ink-2"> |
| 1036 |
|
− Chaque agrégateur attaque un angle mort du quotidien québécois : se |
| 1037 |
|
− loger, acheter, évaluer, rouler, consommer local, faire |
| 1038 |
|
− l'épicerie, manger au resto, sortir, suivre les créateurs |
| 1039 |
|
− d'ici. Aucune saisie manuelle — les plateformes se maintiennent |
| 1040 |
|
− elles-mêmes, annonce par annonce, prix par prix. |
| 1041 |
|
− </p> |
| 1042 |
|
− <div className="mt-7 grid gap-5 sm:grid-cols-2 lg:grid-cols-3"> |
| 1043 |
|
− {PRODUCTS.map((p, i) => ( |
| 1044 |
|
− <ProductCard |
|
1129 |
+ <div className="mt-10"> |
|
1130 |
+ {PRODUCTS.map((p) => ( |
|
1131 |
+ <ProductRow |
| 1045 |
1132 |
key={p.num} |
| 1046 |
1133 |
p={{ ...p, chips: chips[p.domain] ?? p.chips }} |
| 1047 |
|
− index={i} |
| 1048 |
|
− wide={i === PRODUCTS.length - 1} |
| 1049 |
1134 |
/> |
| 1050 |
1135 |
))} |
| 1051 |
1136 |
</div> |
| 1052 |
1137 |
</Section> |
| 1053 |
1138 |
|
| 1054 |
|
− {/* ---------- Socle commun ---------- */} |
|
1139 |
+ {/* ================= Socle commun ================= */} |
| 1055 |
1140 |
<Section |
| 1056 |
1141 |
id="socle" |
|
1142 |
+ index="05" |
| 1057 |
1143 |
kicker="Une seule fondation" |
| 1058 |
1144 |
title="Le socle commun" |
|
1145 |
+ lead={ |
|
1146 |
+ <> |
|
1147 |
+ Les onze plateformes partagent la même colonne vertébrale : données |
|
1148 |
+ publiques et annonces lues directement à la source, connecteurs |
|
1149 |
+ dédiés synchronisés en continu, moteurs statistiques validés, et |
|
1150 |
+ une identité visuelle unique — bordures encre, lime électrique, |
|
1151 |
+ calcul à découvert. |
|
1152 |
+ </> |
|
1153 |
+ } |
| 1059 |
1154 |
> |
| 1060 |
|
− <p className="mt-3 max-w-xl text-[14.5px] text-ink-2"> |
| 1061 |
|
− Les onze plateformes partagent la même colonne vertébrale : données |
| 1062 |
|
− publiques et annonces lues directement à la source, connecteurs |
| 1063 |
|
− dédiés synchronisés en continu, moteurs statistiques validés, et une |
| 1064 |
|
− identité visuelle unique — bordures encre, lime électrique, calcul à |
| 1065 |
|
− découvert. |
| 1066 |
|
− </p> |
| 1067 |
|
− <div className="src-wrap mt-7"> |
|
1155 |
+ <div className="src-wrap src-wrap--open mt-9"> |
| 1068 |
1156 |
<table className="src-table"> |
| 1069 |
1157 |
<thead> |
| 1070 |
1158 |
<tr> |
| 1099 |
1187 |
</div> |
| 1100 |
1188 |
</Section> |
| 1101 |
1189 |
|
| 1102 |
|
− {/* ---------- ka2 · ka4 · ka6 — les agents gardiens ---------- */} |
|
1190 |
+ {/* ================= ka2 · ka4 · ka6 — les agents gardiens ================= */} |
| 1103 |
1191 |
<Section |
| 1104 |
1192 |
id="bots" |
|
1193 |
+ index="06" |
| 1105 |
1194 |
kicker="Les gardiens du groupe · maintenance autonome" |
| 1106 |
1195 |
title={ |
| 1107 |
1196 |
<> |
| 1108 |
|
− Quand un connecteur casse, <span className="hl">un agent le répare</span> |
|
1197 |
+ Quand un connecteur casse,{" "} |
|
1198 |
+ <span className="hl">un agent le répare</span> |
|
1199 |
+ </> |
|
1200 |
+ } |
|
1201 |
+ lead={ |
|
1202 |
+ <> |
|
1203 |
+ Des centaines de connecteurs lisent le web à la source — et le web |
|
1204 |
+ bouge : sites qui migrent, API qui disparaissent, encodages qui |
|
1205 |
+ changent. Depuis août 2026, ka·2, ka·4 et ka·6 sont les agents |
|
1206 |
+ gardiens autonomes du groupe : ils détectent la panne, ouvrent le |
|
1207 |
+ code, la réparent, prouvent que ça marche — et reculent si ça |
|
1208 |
+ empire.{" "} |
|
1209 |
+ <a |
|
1210 |
+ href="/agents" |
|
1211 |
+ className="font-semibold underline underline-offset-4 hover:text-green" |
|
1212 |
+ > |
|
1213 |
+ Le fonctionnement complet, ultra-détaillé → |
|
1214 |
+ </a> |
| 1109 |
1215 |
</> |
| 1110 |
1216 |
} |
| 1111 |
1217 |
> |
| 1112 |
|
− <p className="mt-3 max-w-xl text-[14.5px] text-ink-2"> |
| 1113 |
|
− Des centaines de connecteurs lisent le web à la source — et le web |
| 1114 |
|
− bouge : sites qui migrent, API qui disparaissent, encodages qui |
| 1115 |
|
− changent. Depuis août 2026, ka·2, ka·4 et ka·6 sont les agents |
| 1116 |
|
− gardiens autonomes du groupe : ils détectent la panne, ouvrent le |
| 1117 |
|
− code, la réparent, prouvent que ça marche — et reculent si ça |
| 1118 |
|
− empire. <a href="/agents" className="font-semibold underline underline-offset-4 hover:text-green">Le fonctionnement complet, ultra-détaillé →</a> |
| 1119 |
|
− </p> |
| 1120 |
|
− <div className="mt-7 grid gap-5 lg:grid-cols-3"> |
|
1218 |
+ <div className="mt-10 grid gap-x-10 gap-y-12 lg:grid-cols-3"> |
| 1121 |
1219 |
{BOTS.map((b) => ( |
| 1122 |
|
− <article key={b.domain} className="gk-card gk-card-hover p-5 sm:p-7"> |
|
1220 |
+ <article key={b.domain} className="rule-ink pt-5"> |
| 1123 |
1221 |
<div className="flex flex-wrap items-baseline justify-between gap-3"> |
| 1124 |
1222 |
<span className="gk-mono text-[12px] font-bold text-green"> |
| 1125 |
1223 |
GARDIEN |
| 1126 |
1224 |
</span> |
| 1127 |
1225 |
<span className="klabel">{b.domain}</span> |
| 1128 |
1226 |
</div> |
| 1129 |
|
− <h3 className="gk-display mt-4 inline-flex items-baseline gap-[5px] text-[32px] font-bold tracking-[-0.04em] sm:text-[38px]"> |
|
1227 |
+ <h3 className="gk-display mt-4 inline-flex items-baseline gap-[5px] text-[32px] font-bold tracking-[-0.04em] sm:text-[36px]"> |
| 1130 |
1228 |
Ka |
| 1131 |
1229 |
<span |
| 1132 |
1230 |
className="inline-block -rotate-2 rounded-md px-[8px] pb-[3px]" |
| 1135 |
1233 |
{b.digit} |
| 1136 |
1234 |
</span> |
| 1137 |
1235 |
</h3> |
| 1138 |
|
− <p className="gk-display mt-3 text-[17px] font-bold uppercase tracking-[-0.01em]"> |
|
1236 |
+ <p className="gk-display mt-2 text-[16px] font-bold uppercase tracking-[-0.01em]"> |
| 1139 |
1237 |
{b.tagline} |
| 1140 |
1238 |
</p> |
| 1141 |
1239 |
<p className="mt-3 text-[13.5px] leading-relaxed text-ink-2"> |
| 1142 |
1240 |
{b.description} |
| 1143 |
1241 |
</p> |
| 1144 |
|
− <div className="mt-5 flex flex-wrap gap-2"> |
| 1145 |
|
− {b.chips.map((chip) => ( |
| 1146 |
|
− <span key={chip} className="stat-chip !text-[11px]"> |
| 1147 |
|
− {chip} |
| 1148 |
|
− </span> |
| 1149 |
|
− ))} |
| 1150 |
|
− </div> |
| 1151 |
|
− <ul className="mt-5 space-y-2 border-t-[1.5px] border-dashed border-[rgba(20,24,20,0.25)] pt-5"> |
| 1152 |
|
− {b.features.map((f) => ( |
| 1153 |
|
− <li key={f} className="flex gap-3 text-[13.5px] text-ink-2"> |
| 1154 |
|
− <span |
| 1155 |
|
− aria-hidden="true" |
| 1156 |
|
− className="mt-[7px] h-[5px] w-[5px] flex-none rotate-45 border border-ink bg-lime" |
| 1157 |
|
− /> |
| 1158 |
|
− {f} |
| 1159 |
|
− </li> |
| 1160 |
|
− ))} |
| 1161 |
|
− </ul> |
|
1242 |
+ <DataLine items={b.chips} className="mt-4" /> |
|
1243 |
+ <DiamondList |
|
1244 |
+ items={b.features} |
|
1245 |
+ accent={b.accent} |
|
1246 |
+ className="rule-hair mt-5 pt-5" |
|
1247 |
+ /> |
| 1162 |
1248 |
<a |
| 1163 |
1249 |
href={b.url} |
| 1164 |
1250 |
target="_blank" |
| 1165 |
1251 |
rel="noopener noreferrer" |
| 1166 |
|
− className="btn btn-primary mt-6 w-full sm:w-auto" |
|
1252 |
+ className="cta-link cta-link--ext mt-5" |
| 1167 |
1253 |
> |
| 1168 |
|
− Visiter {b.domain} ↗ |
|
1254 |
+ Visiter {b.domain.replace("www.", "")} |
| 1169 |
1255 |
</a> |
| 1170 |
1256 |
</article> |
| 1171 |
1257 |
))} |
| 1172 |
1258 |
</div> |
| 1173 |
|
− <div className="gk-card mt-6 !bg-ink p-6 text-paper sm:p-7"> |
| 1174 |
|
− <p className="kicker !text-lime"> |
| 1175 |
|
− La boucle de garde, en quatre temps |
| 1176 |
|
− </p> |
| 1177 |
|
− <div className="mt-4 grid items-start gap-6 lg:grid-cols-2"> |
| 1178 |
|
− <p className="gk-display text-[clamp(24px,3.2vw,34px)] leading-[1.05] font-bold tracking-[-0.03em] uppercase"> |
| 1179 |
|
− api-ka détecte |
| 1180 |
|
− <br /> |
| 1181 |
|
− <span className="text-lime">→ le gardien répare</span> |
| 1182 |
|
− <br />→ ·Ka continue |
|
1259 |
+ |
|
1260 |
+ {/* ---- La boucle de garde : bande sombre pleine largeur ---- */} |
|
1261 |
+ <div className="bleed band-ink mt-16"> |
|
1262 |
+ <div className="mx-auto max-w-6xl px-4 py-12 sm:px-6 sm:py-16"> |
|
1263 |
+ <p className="gk-mono text-[10.5px] font-bold tracking-[0.14em] uppercase text-lime"> |
|
1264 |
+ La boucle de garde, en quatre temps |
| 1183 |
1265 |
</p> |
| 1184 |
|
− <div> |
| 1185 |
|
− <p className="max-w-md text-[13.5px] text-[rgba(245,243,238,0.75)]"> |
| 1186 |
|
− La supervision du groupe classe plus de 2 600 connecteurs en |
| 1187 |
|
− continu. Un connecteur cassé devient un incident ; un incident |
| 1188 |
|
− devient une mission Claude Code sur le nœud même de la |
| 1189 |
|
− plateforme ; une réparation n'est confirmée que par le |
| 1190 |
|
− retour mesuré des données — et huit heures de surveillance. |
| 1191 |
|
− Sinon : retour git au commit d'avant, automatiquement. |
|
1266 |
+ <div className="mt-6 grid items-start gap-10 lg:grid-cols-2"> |
|
1267 |
+ <p className="gk-display text-[clamp(26px,3.6vw,40px)] leading-[1.06] font-bold tracking-[-0.03em] uppercase text-paper"> |
|
1268 |
+ api-ka détecte |
|
1269 |
+ <br /> |
|
1270 |
+ <span className="text-lime">→ le gardien répare</span> |
|
1271 |
+ <br />→ ·Ka continue |
| 1192 |
1272 |
</p> |
| 1193 |
|
− <ul className="mt-5 space-y-2 border-t border-[rgba(245,243,238,0.15)] pt-5 text-[13px] text-[rgba(245,243,238,0.75)]"> |
| 1194 |
|
− {[ |
| 1195 |
|
− "Test réel obligatoire — un correctif sans données mesurées compte comme un échec", |
| 1196 |
|
− "Rollback automatique si la plateforme se dégrade ou ne guérit pas", |
| 1197 |
|
− "Jamais de push autonome — l'humain garde le dernier mot sur le code", |
| 1198 |
|
− "Zéro boîte noire — flux d'actions, commits et coûts publics sur ka2.bot, ka4.bot et ka6.bot", |
| 1199 |
|
− ].map((f) => ( |
| 1200 |
|
− <li key={f} className="flex gap-3"> |
| 1201 |
|
− <span |
| 1202 |
|
− aria-hidden="true" |
| 1203 |
|
− className="mt-[6px] h-[5px] w-[5px] flex-none rotate-45 bg-lime" |
| 1204 |
|
− /> |
| 1205 |
|
− {f} |
| 1206 |
|
− </li> |
| 1207 |
|
− ))} |
| 1208 |
|
− </ul> |
| 1209 |
|
− <a href="/agents" className="btn btn-lime mt-6 !border-lime"> |
| 1210 |
|
− Tout le fonctionnement en détail → |
| 1211 |
|
− </a> |
|
1273 |
+ <div> |
|
1274 |
+ <p className="max-w-md text-[13.5px] leading-relaxed text-[rgba(245,243,238,0.75)]"> |
|
1275 |
+ La supervision du groupe classe plus de 2 600 connecteurs en |
|
1276 |
+ continu. Un connecteur cassé devient un incident ; un |
|
1277 |
+ incident devient une mission Claude Code sur le nœud même de |
|
1278 |
+ la plateforme ; une réparation n'est confirmée que par |
|
1279 |
+ le retour mesuré des données — et huit heures de |
|
1280 |
+ surveillance. Sinon : retour git au commit d'avant, |
|
1281 |
+ automatiquement. |
|
1282 |
+ </p> |
|
1283 |
+ <DiamondList |
|
1284 |
+ dark |
|
1285 |
+ className="mt-5 border-t border-[rgba(245,243,238,0.15)] pt-5" |
|
1286 |
+ items={[ |
|
1287 |
+ "Test réel obligatoire — un correctif sans données mesurées compte comme un échec", |
|
1288 |
+ "Rollback automatique si la plateforme se dégrade ou ne guérit pas", |
|
1289 |
+ "Jamais de push autonome — l'humain garde le dernier mot sur le code", |
|
1290 |
+ "Zéro boîte noire — flux d'actions, commits et coûts publics sur ka2.bot, ka4.bot et ka6.bot", |
|
1291 |
+ ]} |
|
1292 |
+ /> |
|
1293 |
+ <a href="/agents" className="cta-link cta-link--paper mt-6"> |
|
1294 |
+ Tout le fonctionnement en détail |
|
1295 |
+ </a> |
|
1296 |
+ </div> |
| 1212 |
1297 |
</div> |
| 1213 |
1298 |
</div> |
| 1214 |
1299 |
</div> |
| 1215 |
1300 |
</Section> |
| 1216 |
1301 |
|
| 1217 |
|
− {/* ---------- Manifeste ---------- */} |
| 1218 |
|
− <Section id="mission" kicker="Notre manifeste" title="Trois principes, aucune exception"> |
| 1219 |
|
− <div className="mt-7 grid gap-4 sm:grid-cols-3"> |
| 1220 |
|
− {MANIFESTO.map((m) => ( |
| 1221 |
|
− <article key={m.num} className="gk-card gk-card-hover p-5 sm:p-6"> |
| 1222 |
|
− <span className="gk-mono text-[12px] font-bold text-green"> |
| 1223 |
|
− {m.num} |
|
1302 |
+ {/* ================= Manifeste ================= */} |
|
1303 |
+ <Section |
|
1304 |
+ id="mission" |
|
1305 |
+ index="07" |
|
1306 |
+ kicker="Notre manifeste" |
|
1307 |
+ title="Trois principes, aucune exception" |
|
1308 |
+ > |
|
1309 |
+ <div className="mt-10 grid gap-x-10 gap-y-10 sm:grid-cols-3"> |
|
1310 |
+ {MANIFESTO.map((item) => ( |
|
1311 |
+ <article key={item.num} className="rule-ink pt-5"> |
|
1312 |
+ <span className="gk-mono tnum text-[15px] font-bold text-green"> |
|
1313 |
+ {item.num} |
| 1224 |
1314 |
</span> |
| 1225 |
|
− <h3 className="gk-display mt-3 text-[17px] font-bold uppercase"> |
| 1226 |
|
− {m.title} |
|
1315 |
+ <h3 className="gk-display mt-3 text-[18px] font-bold uppercase"> |
|
1316 |
+ {item.title} |
| 1227 |
1317 |
</h3> |
| 1228 |
1318 |
<p className="mt-3 text-[13.5px] leading-relaxed text-ink-2"> |
| 1229 |
|
− {m.body} |
|
1319 |
+ {item.body} |
| 1230 |
1320 |
</p> |
| 1231 |
1321 |
</article> |
| 1232 |
1322 |
))} |
| 1233 |
1323 |
</div> |
| 1234 |
1324 |
</Section> |
| 1235 |
1325 |
|
| 1236 |
|
− {/* ---------- Appel à l'action ---------- */} |
| 1237 |
|
− <section className="mt-16 sm:mt-20"> |
| 1238 |
|
− <div className="gk-card overflow-hidden !bg-ink p-7 text-paper sm:p-10"> |
|
1326 |
+ {/* ================= Appel à l'action ================= */} |
|
1327 |
+ <section className="bleed band-ink mt-20 sm:mt-28"> |
|
1328 |
+ <div className="mx-auto max-w-6xl px-4 py-16 sm:px-6 sm:py-24"> |
| 1239 |
1329 |
<p className="kicker !text-lime">Un projet · une question</p> |
| 1240 |
|
− <h2 className="gk-display mt-3 max-w-2xl text-[clamp(24px,4vw,40px)] leading-[1.02] font-bold tracking-[-0.03em] uppercase"> |
|
1330 |
+ <h2 className="gk-display mt-5 max-w-3xl text-[clamp(32px,6.4vw,76px)] leading-[0.98] font-bold tracking-[-0.04em] uppercase text-paper"> |
| 1241 |
1331 |
Quelque chose à <span className="text-lime">agréger</span> ?{" "} |
| 1242 |
1332 |
Parlons-en. |
| 1243 |
1333 |
</h2> |
| 1244 |
|
− <p className="mt-4 max-w-xl text-[14.5px] text-[rgba(245,243,238,0.75)]"> |
|
1334 |
+ <p className="mt-5 max-w-xl text-[14.5px] leading-relaxed text-[rgba(245,243,238,0.75)]"> |
| 1245 |
1335 |
Partenariats, données, médias ou simple curiosité méthodologique — |
| 1246 |
1336 |
de vraies personnes au bout. C'est notre spécialité : tout |
| 1247 |
1337 |
ramener à un seul endroit. |
| 1248 |
1338 |
</p> |
| 1249 |
|
− <div className="mt-7 flex flex-wrap gap-3"> |
|
1339 |
+ <div className="mt-9 flex flex-wrap items-center gap-x-8 gap-y-4"> |
| 1250 |
1340 |
<a |
| 1251 |
1341 |
href="mailto:contact@groupe-ka.com" |
| 1252 |
1342 |
className="btn btn-lime !border-lime" |
| 1253 |
1343 |
> |
| 1254 |
1344 |
contact@groupe-ka.com |
| 1255 |
1345 |
</a> |
| 1256 |
|
− <a |
| 1257 |
|
− href="mailto:info@groupe-ka.com" |
| 1258 |
|
− className="btn !border-lime !bg-transparent !text-lime hover:!bg-[rgba(217,242,107,0.12)]" |
| 1259 |
|
− > |
|
1346 |
+ <a href="mailto:info@groupe-ka.com" className="cta-link cta-link--paper"> |
| 1260 |
1347 |
info@groupe-ka.com |
| 1261 |
1348 |
</a> |
| 1262 |
1349 |
</div> |
| 1263 |
|
− <p className="gk-mono mt-5 text-[11px] text-[rgba(245,243,238,0.55)]"> |
|
1350 |
+ <p className="gk-mono mt-7 text-[11px] text-[rgba(245,243,238,0.5)]"> |
| 1264 |
1351 |
contact@ — projets & partenariats · info@ — médias & |
| 1265 |
1352 |
questions générales · admin@ — légal & vie privée |
| 1266 |
1353 |
</p> |
| 1267 |
1354 |
|