feature/auth #2

Merged
m1000 merged 14 commits from feature/auth into main 2024-12-13 12:55:23 +00:00
2 changed files with 2 additions and 20 deletions
Showing only changes of commit e257940129 - Show all commits

View File

@ -1,4 +1,4 @@
"use client"; // Indique que ce composant est un Client Component
"use client";
import { SessionProvider } from "next-auth/react";

View File

@ -1,21 +1,3 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
:root {
--background: #ffffff;
--foreground: #171717;
}
@media (prefers-color-scheme: dark) {
:root {
--background: #0a0a0a;
--foreground: #ededed;
}
}
body {
color: var(--foreground);
background: var(--background);
font-family: Arial, Helvetica, sans-serif;
}