Add badge and types to Welcome imports
cgen-3b0761d1b46646f0945133cd99c103c9
This commit is contained in:
parent
28e89ebdf6
commit
b2343a1fab
1 changed files with 10 additions and 1 deletions
|
|
@ -7,13 +7,22 @@ import {
|
|||
CardHeader,
|
||||
CardTitle,
|
||||
} from "@/components/ui/card";
|
||||
import { CheckCircle, ArrowRight, Sparkles } from "lucide-react";
|
||||
import { Badge } from "@/components/ui/badge";
|
||||
import {
|
||||
CheckCircle,
|
||||
ArrowRight,
|
||||
Sparkles,
|
||||
ShieldCheck,
|
||||
Sparkle,
|
||||
} from "lucide-react";
|
||||
import { Link } from "react-router-dom";
|
||||
import type { AethexAchievement } from "@/lib/aethex-database-adapter";
|
||||
|
||||
interface WelcomeProps {
|
||||
data: OnboardingData;
|
||||
onFinish?: () => void;
|
||||
isFinishing?: boolean;
|
||||
achievement?: AethexAchievement;
|
||||
}
|
||||
|
||||
export default function Welcome({ data, onFinish, isFinishing }: WelcomeProps) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue