From 94586b6bb65e647b92ce464a917a1aaa00c0c21d Mon Sep 17 00:00:00 2001 From: Vula Builder Date: Tue, 28 Jul 2026 07:32:31 +0000 Subject: [PATCH] Deploy --- .../sections/ConnectWithUsSection.tsx | 129 ++++++++++++++++++ 1 file changed, 129 insertions(+) create mode 100644 src/components/sections/ConnectWithUsSection.tsx 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" + /> +
+
+ +