diff --git a/public/chemicals.png b/public/chemicals.png new file mode 100644 index 0000000..ac29426 Binary files /dev/null and b/public/chemicals.png differ diff --git a/public/clamp.svg b/public/clamp.svg new file mode 100644 index 0000000..65f57b3 --- /dev/null +++ b/public/clamp.svg @@ -0,0 +1,3 @@ + \ No newline at end of file diff --git a/public/production.png b/public/production.png new file mode 100644 index 0000000..ff34935 Binary files /dev/null and b/public/production.png differ diff --git a/src/components/reusable/formCustomization.tsx b/src/components/reusable/formCustomization.tsx new file mode 100644 index 0000000..89806b9 --- /dev/null +++ b/src/components/reusable/formCustomization.tsx @@ -0,0 +1,192 @@ +import { + Button, + Checkbox, + Input, + Modal, + ModalContent, + ModalHeader, + ModalBody, + ModalFooter, + useDisclosure, + Link +} from "@nextui-org/react"; +import ChevronBannerIcon from "@/../public/banner_arr_btn.svg.svg" +import ClampIcon from "../../../public/clamp.svg" + + +const FormCustomization = () => { + const {isOpen, onOpen, onOpenChange} = useDisclosure(); + return ( +
+ ) +} + +export default FormCustomization \ No newline at end of file diff --git a/src/components/reusable/formPersonalization.tsx b/src/components/reusable/formPersonalization.tsx new file mode 100644 index 0000000..b08444a --- /dev/null +++ b/src/components/reusable/formPersonalization.tsx @@ -0,0 +1,247 @@ +import {Button, Checkbox, Input, RadioGroup, Radio,Link} from "@nextui-org/react"; + +import ChevronBannerIcon from "@/../public/banner_arr_btn.svg.svg" + + +const FormPersonalization = () => { + return ( + + ) +} + +export default FormPersonalization \ No newline at end of file