diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 518fd8d..c4ab0fc 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -2,12 +2,9 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; -import ContactCenter from "@/components/sections/contact/ContactCenter"; -import PricingCardThree from "@/components/sections/pricing/PricingCardThree"; -import FeatureCardTwentyFour from "@/components/sections/feature/FeatureCardTwentyFour"; +import ContactCTA from "@/components/sections/contact/ContactCTA"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import Link from "next/link"; -import { Sparkles } from "lucide-react"; +import { Mail } from "lucide-react"; export default function ContactPage() { const navItems = [ @@ -16,86 +13,23 @@ export default function ContactPage() { { name: "Contact", id: "/contact" }, ]; - const contactFeatures = [ - { - id: "1", - title: "Direct Instagram Contact", - author: "VendorLinks Support", - description: "Send us a DM on Instagram @motivation_tomillions to discuss your vendor needs, ask questions, or place bulk orders for your reselling business.", - tags: ["Fast Response", "Direct Contact"], - imageSrc: "http://img.b2bpic.net/free-photo/diverse-amazed-colleagues-excited-by-online-win-result-achievement_1163-4618.jpg?_wi=2", - imageAlt: "customer support success", - }, - { - id: "2", - title: "Email Delivery of Vendor Links", - author: "VendorLinks Team", - description: "After purchase, receive your vendor contacts, WhatsApp numbers, and direct product links via email within 24 hours. All information is organized by product category.", - tags: ["Email Delivery", "24/7 Access"], - imageSrc: "http://img.b2bpic.net/free-vector/translator-app-screens_23-2148621893.jpg?_wi=2", - imageAlt: "instant messaging delivery", - }, - { - id: "3", - title: "Personalized Vendor Recommendations", - author: "VendorLinks Team", - description: "Let us know your product focus area - whether it's fashion, jewelry, electronics, or lifestyle items - and we'll recommend the best vendor contacts for your business.", - tags: ["Customized", "Business Focused"], - imageSrc: "http://img.b2bpic.net/free-photo/young-woman-chooses-towel-home-goods-store_169016-19593.jpg?_wi=2", - imageAlt: "personalized recommendations", - }, - ]; - - const pricingPlans = [ - { - id: "individual", - price: "$15", - name: "Individual Vendor", - buttons: [{ text: "Purchase Now", href: "/vendors" }], - features: [ - "Direct vendor WhatsApp contact", - "Vendor product links", - "24/7 access", - "Email delivery of contacts", - ], - }, - { - id: "bundle", - badge: "Recommended", - badgeIcon: Sparkles, - price: "$100", - name: "Complete Bundle", - buttons: [{ text: "Get All Vendors", href: "/contact" }], - features: [ - "All 10 vendor contacts", - "All product links included", - "Lifetime access", - "Priority email support", - "Future vendor updates", - ], - }, - ]; - const footerColumns = [ { - title: "Product", - items: [ + title: "Product", items: [ { label: "Vendors", href: "/vendors" }, { label: "Pricing", href: "/" }, { label: "Bundle", href: "/vendors" }, ], }, { - title: "Company", - items: [ + title: "Company", items: [ { label: "About", href: "/" }, { label: "Contact", href: "/contact" }, { label: "Instagram", href: "https://instagram.com/motivation_tomillions" }, ], }, { - title: "Support", - items: [ + title: "Support", items: [ { label: "FAQ", href: "/" }, { label: "Email Us", href: "/contact" }, { label: "Privacy Policy", href: "/" }, @@ -125,40 +59,21 @@ export default function ContactPage() { /> -