website refactor

This commit is contained in:
2026-01-20 01:22:05 +01:00
parent f8e7ec7948
commit 30a31dc44f
21 changed files with 1242 additions and 393 deletions

View File

@@ -0,0 +1,20 @@
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>
);
}