Update src/app/contact/page.tsx

This commit is contained in:
2026-01-22 16:52:17 +00:00
parent d3663c0398
commit 3c804a747d

View File

@@ -4,7 +4,7 @@ import NavbarLayoutFloatingOverlay from '@/components/navbar/NavbarLayoutFloatin
import ContactSplitForm from '@/components/sections/contact/ContactSplitForm';
import TextAbout from '@/components/sections/about/TextAbout';
import FooterCard from '@/components/sections/footer/FooterCard';
import { Instagram, Facebook, Pinterest } from 'lucide-react';
import { Instagram, Facebook, Hash } from 'lucide-react';
export default function ContactPage() {
return (
@@ -31,8 +31,7 @@ export default function ContactPage() {
{ name: "Contact", id: "/contact" }
]}
button={{
text: "Book Now",
href: "/contact"
text: "Book Now", href: "/contact"
}}
/>
</div>
@@ -48,9 +47,7 @@ export default function ContactPage() {
{ name: "eventDate", type: "date", placeholder: "Planned Event Date", required: true }
]}
textarea={{
name: "message",
placeholder: "Tell us about your floral vision and any specific preferences",
rows: 5,
name: "message", placeholder: "Tell us about your floral vision and any specific preferences", rows: 5,
required: true
}}
useInvertedBackground="noInvert"
@@ -91,7 +88,7 @@ export default function ContactPage() {
socialLinks={[
{ icon: Instagram, href: "https://instagram.com/jasminflowers", ariaLabel: "Instagram" },
{ icon: Facebook, href: "https://facebook.com/jasminflowers", ariaLabel: "Facebook" },
{ icon: Pinterest, href: "https://pinterest.com/jasminflowers", ariaLabel: "Pinterest" }
{ icon: Hash, href: "https://pinterest.com/jasminflowers", ariaLabel: "Pinterest" }
]}
/>
</div>