website refactor
This commit is contained in:
@@ -1,28 +1,29 @@
|
||||
import { Heading } from '@/ui/Heading';
|
||||
import { Icon } from '@/ui/Icon';
|
||||
import { Stack } from '@/ui/primitives/Stack';
|
||||
import { Text } from '@/ui/Text';
|
||||
import { ListItem, ListItemInfo } from '@/ui/ListItem';
|
||||
import { motion } from 'framer-motion';
|
||||
import { Car, Trophy, Users } from 'lucide-react';
|
||||
import React from 'react';
|
||||
|
||||
const USER_ROLES = [
|
||||
{
|
||||
icon: Car,
|
||||
title: 'Driver',
|
||||
description: 'Race, track stats, join teams',
|
||||
color: 'primary-blue',
|
||||
intent: 'primary' as const,
|
||||
},
|
||||
{
|
||||
icon: Trophy,
|
||||
title: 'League Admin',
|
||||
description: 'Organize leagues and events',
|
||||
color: 'performance-green',
|
||||
intent: 'success' as const,
|
||||
},
|
||||
{
|
||||
icon: Users,
|
||||
title: 'Team Manager',
|
||||
description: 'Manage team and drivers',
|
||||
color: 'purple-400',
|
||||
intent: 'telemetry' as const,
|
||||
},
|
||||
] as const;
|
||||
|
||||
@@ -33,72 +34,46 @@ interface UserRolesPreviewProps {
|
||||
export function UserRolesPreview({ variant = 'full' }: UserRolesPreviewProps) {
|
||||
if (variant === 'compact') {
|
||||
return (
|
||||
<Stack mt={8} display={{ base: 'block', lg: 'none' }}>
|
||||
<Text align="center" size="xs" color="text-gray-500" mb={4} block>
|
||||
<div style={{ marginTop: '2rem' }}>
|
||||
<Text align="center" size="xs" variant="low" block marginBottom={4}>
|
||||
One account for all roles
|
||||
</Text>
|
||||
<Stack direction="row" justify="center" gap={6}>
|
||||
<div style={{ display: 'flex', justifyContent: 'center', gap: '1.5rem' }}>
|
||||
{USER_ROLES.map((role) => (
|
||||
<Stack key={role.title} direction="col" align="center">
|
||||
<Stack
|
||||
w="8"
|
||||
h="8"
|
||||
rounded="lg"
|
||||
bg={`bg-${role.color}/20`}
|
||||
align="center"
|
||||
justify="center"
|
||||
mb={1}
|
||||
>
|
||||
<Text color={`text-${role.color}`}>
|
||||
<Icon icon={role.icon} size={4} />
|
||||
</Text>
|
||||
</Stack>
|
||||
<Text size="xs" color="text-gray-500">{role.title}</Text>
|
||||
</Stack>
|
||||
<div key={role.title} style={{ display: 'flex', flexDirection: 'column', alignItems: 'center', gap: '0.25rem' }}>
|
||||
<div style={{ width: '2rem', height: '2rem', borderRadius: '0.5rem', backgroundColor: 'var(--ui-color-bg-surface-muted)', display: 'flex', alignItems: 'center', justifyContent: 'center' }}>
|
||||
<Icon icon={role.icon} size={4} intent={role.intent} />
|
||||
</div>
|
||||
<Text size="xs" variant="low">{role.title}</Text>
|
||||
</div>
|
||||
))}
|
||||
</Stack>
|
||||
</Stack>
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
return (
|
||||
<Stack direction="col" gap={3} mb={8}>
|
||||
<div style={{ display: 'flex', flexDirection: 'column', gap: '0.75rem', marginBottom: '2rem' }}>
|
||||
{USER_ROLES.map((role, index) => (
|
||||
<Stack
|
||||
as={motion.div}
|
||||
<motion.div
|
||||
key={role.title}
|
||||
{...({
|
||||
initial: { opacity: 0, x: -20 },
|
||||
animate: { opacity: 1, x: 0 },
|
||||
transition: { delay: index * 0.1 }
|
||||
} as any)}
|
||||
direction="row"
|
||||
align="center"
|
||||
gap={4}
|
||||
p={4}
|
||||
rounded="xl"
|
||||
bg="bg-iron-gray/50"
|
||||
border
|
||||
borderColor="border-charcoal-outline"
|
||||
initial={{ opacity: 0, x: -20 }}
|
||||
animate={{ opacity: 1, x: 0 }}
|
||||
transition={{ delay: index * 0.1 }}
|
||||
>
|
||||
<Stack
|
||||
w="10"
|
||||
h="10"
|
||||
rounded="lg"
|
||||
bg={`bg-${role.color}/20`}
|
||||
align="center"
|
||||
justify="center"
|
||||
>
|
||||
<Text color={`text-${role.color}`}>
|
||||
<Icon icon={role.icon} size={5} />
|
||||
</Text>
|
||||
</Stack>
|
||||
<Stack>
|
||||
<Heading level={4}>{role.title}</Heading>
|
||||
<Text size="sm" color="text-gray-500">{role.description}</Text>
|
||||
</Stack>
|
||||
</Stack>
|
||||
<ListItem>
|
||||
<div style={{ display: 'flex', alignItems: 'center', gap: '1rem' }}>
|
||||
<div style={{ width: '2.5rem', height: '2.5rem', borderRadius: '0.5rem', backgroundColor: 'var(--ui-color-bg-surface-muted)', display: 'flex', alignItems: 'center', justifyContent: 'center' }}>
|
||||
<Icon icon={role.icon} size={5} intent={role.intent} />
|
||||
</div>
|
||||
<ListItemInfo
|
||||
title={role.title}
|
||||
description={role.description}
|
||||
/>
|
||||
</div>
|
||||
</ListItem>
|
||||
</motion.div>
|
||||
))}
|
||||
</Stack>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user