Extend Welcome onboarding to handle email verification
cgen-d15a3deea1934eeb97af63052c2e5616
This commit is contained in:
parent
c1749d74b0
commit
e8f8c72722
1 changed files with 13 additions and 1 deletions
|
|
@ -8,9 +8,21 @@ import {
|
|||
CardTitle,
|
||||
} from "@/components/ui/card";
|
||||
import { Badge } from "@/components/ui/badge";
|
||||
import { CheckCircle, ArrowRight, Sparkles, ShieldCheck } from "lucide-react";
|
||||
import {
|
||||
CheckCircle,
|
||||
ArrowRight,
|
||||
Sparkles,
|
||||
ShieldCheck,
|
||||
MailCheck,
|
||||
MailWarning,
|
||||
Loader2,
|
||||
} from "lucide-react";
|
||||
import { Link } from "react-router-dom";
|
||||
import { useEffect, useMemo, useState } from "react";
|
||||
import type { AethexAchievement } from "@/lib/aethex-database-adapter";
|
||||
import { useAuth } from "@/contexts/AuthContext";
|
||||
import { supabase } from "@/lib/supabase";
|
||||
import { useAethexToast } from "@/hooks/use-aethex-toast";
|
||||
|
||||
interface WelcomeProps {
|
||||
data: OnboardingData;
|
||||
|
|
|
|||
Loading…
Reference in a new issue