feat(auth): useAuth + ProtectedRoute + signUp dans auth-client (Sprint 1 étape 2)

This commit is contained in:
Hermann_Kitio 2026-04-18 02:09:46 +03:00
parent 107a37d197
commit 38777796aa
19 changed files with 2620 additions and 191 deletions

View file

@ -1,7 +1,7 @@
import * as React from "react"
import { Progress as ProgressPrimitive } from "radix-ui"
import * as React from 'react'
import { Progress as ProgressPrimitive } from 'radix-ui'
import { cn } from "@/shared/lib/utils"
import { cn } from '@/shared/lib/utils'
function Progress({
className,
@ -11,10 +11,7 @@ function Progress({
return (
<ProgressPrimitive.Root
data-slot="progress"
className={cn(
"relative h-2 w-full overflow-hidden rounded-full bg-expria/20",
className
)}
className={cn('relative h-2 w-full overflow-hidden rounded-full bg-expria/20', className)}
{...props}
>
<ProgressPrimitive.Indicator