diff --git a/src/components/sections/ConnectWithUsSection.tsx b/src/components/sections/ConnectWithUsSection.tsx new file mode 100644 index 0000000..9dcb626 --- /dev/null +++ b/src/components/sections/ConnectWithUsSection.tsx @@ -0,0 +1,129 @@ +'use client' + +import { useState } from "react" +import Button from "@/components/ui/Button" +import Input from "@/components/ui/Input" +import { ArrowRight, Camera, Mail, MessageCircle } from 'lucide-react' + +export default function ConnectWithUsSection() { + const [name, setName] = useState("") + const [email, setEmail] = useState("") + const [message, setMessage] = useState("") + + const handleSubmit = (e: React.FormEvent) => { + e.preventDefault() + // Placeholder — send logic + } + + return ( +
+
+
+

Let's talk botanicals

+

+ Whether you need product advice, wholesale pricing, or a ritual recommendation — + send us a note. We reply personally within 24 hours. +

+
+ +
+
+
+ + setName(e.target.value)} + placeholder="Thandi" + required + className="w-full border-[#e2dad4] bg-white" + /> +
+
+ + setEmail(e.target.value)} + placeholder="thandi@example.com" + required + className="w-full border-[#e2dad4] bg-white" + /> +
+
+ +