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