21 lines
677 B
TypeScript
21 lines
677 B
TypeScript
import { Section } from '@/ui/Section';
|
|
import { Heading } from '@/ui/Heading';
|
|
import { Text } from '@/ui/Text';
|
|
import { Stack } from '@/ui/Stack';
|
|
|
|
export default function MigrationPage() {
|
|
return (
|
|
<main>
|
|
<Section variant="default" padding="lg">
|
|
<Stack gap={6} align="center" textAlign="center">
|
|
<Heading level={1} weight="bold">League Migration</Heading>
|
|
<Text variant="med" size="lg" maxWidth="36rem">
|
|
We are currently preparing our migration tools.
|
|
If you want to move your league to GridPilot today, please contact our support team.
|
|
</Text>
|
|
</Stack>
|
|
</Section>
|
|
</main>
|
|
);
|
|
}
|