added contact page

This commit is contained in:
2026-01-26 16:14:48 +01:00
parent 727bd832dc
commit 109cd7660a
3 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import { Field, Textarea } from "@chakra-ui/react"
export const ContactPage = () => {
return (
<Field.Root invalid>
<Field.Label>
Comment <Field.RequiredIndicator />
</Field.Label>
<Textarea placeholder="Start typing..." variant="subtle" />
<Field.ErrorText>Field is required</Field.ErrorText>
</Field.Root>
);
};