SPB Git

spb/groupe-ka Public

Groupe KA — site du holding + KA ID (compte unique & SSO des 7 plateformes). Next.js 16, SQLite, Google & Apple login.

TypeScript 93.9% CSS 6%
373 B · 18 lines tsx
Raw Blame History
1// Auteur : Simon-Pierre Boucher — contact@spboucher.ai2"use client";34export default function LogoutButton() {5  return (6    <button7      type="button"8      className="btn btn-ghost"9      onClick={async () => {10        await fetch("/api/auth/logout", { method: "POST" });11        window.location.href = "/";12      }}13    >14      Se déconnecter15    </button>16  );17}18