Site-perso/src/Components/WorkInProgress.tsx
2025-02-22 22:17:47 +01:00

20 lines
642 B
TypeScript
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import { Heading ,Paragraph, Box} from 'dracula-ui'
import 'dracula-ui/styles/dracula-ui.css'
export default function WorkInProgress() {
return (
<Box display='flex' p="sm" color='blackSecondary' style={{
borderRadius: "1rem",
flexDirection: "column",
alignItems: "center",
}} >
<Heading size='2xl' p='md' >
🛠 Site en construction 🛠
</Heading>
<Paragraph mt='xxs'>
Le site n'est pas encore terminé, mais vous pouvez déjà voir mes projets sur mon Gitea !
</Paragraph>
</Box>
)
}