mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-10 15:35:55 +01:00
♻️ Onboarding page
This commit is contained in:
18
src/components/Onboarding/step-docker-import.tsx
Normal file
18
src/components/Onboarding/step-docker-import.tsx
Normal file
@@ -0,0 +1,18 @@
|
||||
import { Button, Card, Stack, Title } from '@mantine/core';
|
||||
import { IconArrowRight } from '@tabler/icons-react';
|
||||
|
||||
export const StepDockerImport = ({ next }: { next: () => void }) => {
|
||||
return (
|
||||
<Card>
|
||||
<Title order={2} align="center" mb="lg">
|
||||
Automatic container import
|
||||
</Title>
|
||||
|
||||
<Stack align="center">
|
||||
<Button onClick={next} rightIcon={<IconArrowRight size="1rem" />}>
|
||||
Next
|
||||
</Button>
|
||||
</Stack>
|
||||
</Card>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user