mirror of
https://github.com/ajnart/homarr.git
synced 2025-11-03 20:15:57 +01:00
26 lines
818 B
TypeScript
26 lines
818 B
TypeScript
import { Title, Text, Anchor } from '@mantine/core';
|
|
import useStyles from './Welcome.styles';
|
|
|
|
export function Welcome() {
|
|
const { classes } = useStyles();
|
|
|
|
return (
|
|
<>
|
|
<Title className={classes.title} align="center" mt={100}>
|
|
Welcome to{' '}
|
|
<Text inherit variant="gradient" component="span">
|
|
Mantine
|
|
</Text>
|
|
</Title>
|
|
<Text color="dimmed" align="center" size="lg" sx={{ maxWidth: 580 }} mx="auto" mt="xl">
|
|
This starter Next.js project includes a minimal setup for server side rendering, if you want
|
|
to learn more on Mantine + Next.js integration follow{' '}
|
|
<Anchor href="https://mantine.dev/theming/next/" size="lg">
|
|
this guide
|
|
</Anchor>
|
|
. To get started edit index.tsx file.
|
|
</Text>
|
|
</>
|
|
);
|
|
}
|