Files
gridpilot.gg/apps/website/components/onboarding/OnboardingHelpText.tsx
2026-01-19 01:24:07 +01:00

12 lines
311 B
TypeScript

import { Text } from '@/ui/Text';
import { Box } from '@/ui/Box';
export function OnboardingHelpText() {
return (
<Box marginTop={6} textAlign="center">
<Text size="xs" variant="low">
Your avatar will be AI-generated based on your photo and chosen suit color
</Text>
</Box>
);
}