From 0cac46d73a88ad2a5102a11bb1a1ae1d02d8e197 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 20:57:09 +0000 Subject: [PATCH 1/2] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 118 +++++++++++++++++++++++++++++++++++---- 1 file changed, 106 insertions(+), 12 deletions(-) diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index c4ab0fc..e7864f3 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,9 +2,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import ContactCTA from "@/components/sections/contact/ContactCTA"; +import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import { Mail } from "lucide-react"; +import { useState } from "react"; export default function ContactPage() { const navItems = [ @@ -13,6 +13,18 @@ export default function ContactPage() { { name: "Contact", id: "/contact" }, ]; + const [email, setEmail] = useState(""); + const [submitted, setSubmitted] = useState(false); + + const handleEmailSubmit = (submittedEmail: string) => { + setEmail(submittedEmail); + setSubmitted(true); + setTimeout(() => { + setSubmitted(false); + setEmail(""); + }, 3000); + }; + const footerColumns = [ { title: "Product", items: [ @@ -59,21 +71,103 @@ export default function ContactPage() { /> -
- +
+
+

Get in Touch

+

+ Have questions about our vendor services? Want to purchase vendor access or need more information? Reach out to us through any of the channels below. +

+
+ +
+
+

Direct Contact

+

DM us on Instagram for immediate support and vendor inquiries

+ + @motivation_tomillions + +
+
+

Business Hours

+

Available 24/7 for vendor access and purchase support

+

Always Open

+
+
+

Response Time

+

Quick responses to all vendor and purchase inquiries

+

Within 1 Hour

+
+
+
+
+ +
+
+
+
+
+

Why Contact Us?

+

+ Whether you have questions about our vendor directory, need help with your purchase, want to become a vendor partner, or have feedback about our service, we're here to help. +

+
+ +
+
+

Vendor Questions

+

+ Need details about specific vendors or product categories before purchasing? +

+
+
+

Purchase Support

+

+ Issues with your order or need help accessing vendor contacts after purchase? +

+
+
+

Vendor Partnerships

+

+ Interested in partnering with us or listing your vendor services? +

+
+
+

Feedback & Suggestions

+

+ Have ideas to improve VendorLinks or want to share your experience? +

+
+
+ +
+

Quick Start Guide

+
    +
  1. Browse our vendor directory or get the complete bundle
  2. +
  3. Contact us via Instagram to confirm your purchase
  4. +
  5. Receive vendor WhatsApp numbers and direct links
  6. +
  7. Start connecting with suppliers immediately
  8. +
+
+
+
+ -
- -
- -
+
-
+
-- 2.49.1