website refactor
This commit is contained in:
@@ -1,12 +1,12 @@
|
||||
import { useRef, ChangeEvent } from 'react';
|
||||
import { Upload, Loader2, Sparkles, Palette, Check, User } from 'lucide-react';
|
||||
import { Button } from '@/ui/Button';
|
||||
import { Stack } from '@/ui/Stack';
|
||||
import { Text } from '@/ui/Text';
|
||||
import { Icon } from '@/ui/Icon';
|
||||
import { Grid } from '@/ui/Grid';
|
||||
import { Surface } from '@/ui/Surface';
|
||||
import { Image } from '@/ui/Image';
|
||||
import { Grid } from '@/ui/primitives/Grid';
|
||||
import { Stack } from '@/ui/primitives/Stack';
|
||||
import { Surface } from '@/ui/primitives/Surface';
|
||||
import { Text } from '@/ui/Text';
|
||||
import { Check, Loader2, Palette, Sparkles, Upload, User } from 'lucide-react';
|
||||
import { ChangeEvent, useRef } from 'react';
|
||||
|
||||
export type RacingSuitColor =
|
||||
| 'red'
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { Surface } from '@/ui/Surface';
|
||||
import { Stack } from '@/ui/Stack';
|
||||
import { Text } from '@/ui/Text';
|
||||
import { Icon } from '@/ui/Icon';
|
||||
import { Stack } from '@/ui/primitives/Stack';
|
||||
import { Surface } from '@/ui/primitives/Surface';
|
||||
import { Text } from '@/ui/Text';
|
||||
import { HelpCircle } from 'lucide-react';
|
||||
|
||||
interface OnboardingHelpPanelProps {
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { Button } from '@/ui/Button';
|
||||
import { Stack } from '@/ui/Stack';
|
||||
import { Icon } from '@/ui/Icon';
|
||||
import { ChevronLeft, ChevronRight, Check } from 'lucide-react';
|
||||
import { Stack } from '@/ui/primitives/Stack';
|
||||
import { Check, ChevronLeft, ChevronRight } from 'lucide-react';
|
||||
|
||||
interface OnboardingPrimaryActionsProps {
|
||||
onBack?: () => void;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Stack } from '@/ui/Stack';
|
||||
import { Container } from '@/ui/Container';
|
||||
import { Stack } from '@/ui/primitives/Stack';
|
||||
|
||||
interface OnboardingShellProps {
|
||||
children: React.ReactNode;
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
import { Panel } from '@/ui/Panel';
|
||||
import { Stack } from '@/ui/Stack';
|
||||
import { Stack } from '@/ui/primitives/Stack';
|
||||
import { Text } from '@/ui/Text';
|
||||
|
||||
interface OnboardingStepPanelProps {
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
'use client';
|
||||
|
||||
import { Stack } from '@/ui/Stack';
|
||||
import { Stack } from '@/ui/primitives/Stack';
|
||||
import { Text } from '@/ui/Text';
|
||||
import { motion } from 'framer-motion';
|
||||
|
||||
|
||||
@@ -1,11 +1,11 @@
|
||||
import { Clock, ChevronRight } from 'lucide-react';
|
||||
import { Input } from '@/ui/Input';
|
||||
import { CountrySelect } from '@/components/shared/CountrySelect';
|
||||
import { Stack } from '@/ui/Stack';
|
||||
import { Text } from '@/ui/Text';
|
||||
import { Icon } from '@/ui/Icon';
|
||||
import { Grid } from '@/ui/Grid';
|
||||
import { Input } from '@/ui/Input';
|
||||
import { Grid } from '@/ui/primitives/Grid';
|
||||
import { Stack } from '@/ui/primitives/Stack';
|
||||
import { Select } from '@/ui/Select';
|
||||
import { Text } from '@/ui/Text';
|
||||
import { ChevronRight, Clock } from 'lucide-react';
|
||||
|
||||
export interface PersonalInfo {
|
||||
firstName: string;
|
||||
|
||||
Reference in New Issue
Block a user