From dc8c9a10e187780f2990d35e114ceaacd8e1acc6 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 20:54:19 +0000 Subject: [PATCH 1/5] Update src/app/contact/page.tsx --- src/app/contact/page.tsx | 117 ++++++--------------------------------- 1 file changed, 16 insertions(+), 101 deletions(-) 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() { /> -
- +
-
- -
- -
- -
- ); -} \ No newline at end of file +} From 3de7514bcb72c704c2cd552260aab01aa8c7180e Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 20:54:21 +0000 Subject: [PATCH 4/5] Update src/app/styles/variables.css --- src/app/styles/variables.css | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/src/app/styles/variables.css b/src/app/styles/variables.css index c88a206..159da2f 100644 --- a/src/app/styles/variables.css +++ b/src/app/styles/variables.css @@ -10,15 +10,15 @@ --accent: #ffffff; --background-accent: #ffffff; */ - --background: #060000; - --card: #1d0d0d; - --foreground: #ffe6e6; - --primary-cta: #ff3d4a; + --background: #0a0a0a; + --card: #1a1a1a; + --foreground: #ffffffe6; + --primary-cta: #e6e6e6; --primary-cta-text: #ffffff; - --secondary-cta: #1f0a0a; + --secondary-cta: #1a1a1a; --secondary-cta-text: #ffe6e6; - --accent: #7b2d2d; - --background-accent: #b8111f; + --accent: #737373; + --background-accent: #737373; /* text sizing - set by ThemeProvider */ /* --text-2xs: clamp(0.465rem, 0.62vw, 0.62rem); From fa1cea84de3ea772f37fd93f7ec3290394184898 Mon Sep 17 00:00:00 2001 From: bender Date: Fri, 6 Mar 2026 20:54:22 +0000 Subject: [PATCH 5/5] Update src/app/vendors/page.tsx --- src/app/vendors/page.tsx | 190 ++++++++++++--------------------------- 1 file changed, 56 insertions(+), 134 deletions(-) diff --git a/src/app/vendors/page.tsx b/src/app/vendors/page.tsx index 7f422fc..531ee93 100644 --- a/src/app/vendors/page.tsx +++ b/src/app/vendors/page.tsx @@ -2,12 +2,11 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleFullscreen from "@/components/navbar/NavbarStyleFullscreen/NavbarStyleFullscreen"; +import HeroBillboardCarousel from "@/components/sections/hero/HeroBillboardCarousel"; import ProductCardOne from "@/components/sections/product/ProductCardOne"; -import PricingCardThree from "@/components/sections/pricing/PricingCardThree"; import ContactCenter from "@/components/sections/contact/ContactCenter"; import FooterBaseCard from "@/components/sections/footer/FooterBaseCard"; -import Link from "next/link"; -import { Sparkles } from "lucide-react"; +import { MessageCircle, ExternalLink, Share2 } from "lucide-react"; export default function VendorsPage() { const navItems = [ @@ -16,136 +15,57 @@ export default function VendorsPage() { { name: "Contact", id: "/contact" }, ]; - const allProducts = [ + const heroMediaItems = [ { - id: "1", - name: "Cologne Vendor", - price: "$15", - imageSrc: "http://img.b2bpic.net/free-photo/top-view-valentines-day-present-fragnance-dark-surface-gift-perfume-love-color-couple-woman-ring-marriage_140725-108988.jpg?_wi=2", - imageAlt: "premium cologne fragrance bottle", - }, + imageSrc: "http://img.b2bpic.net/free-photo/businessman-presenting-invisible-hologram-projecting-from-tablet-advanced-technology_53876-111206.jpg", imageAlt: "vendor dashboard modern interface"}, { - id: "2", - name: "Moissanite Watch Vendor", - price: "$15", - imageSrc: "http://img.b2bpic.net/free-photo/elegant-businessman-checking-time_23-2148012930.jpg?_wi=2", - imageAlt: "moissanite diamond watch luxury", - }, + imageSrc: "http://img.b2bpic.net/free-photo/diverse-amazed-colleagues-excited-by-online-win-result-achievement_1163-4618.jpg?_wi=1", imageAlt: "vendor success team achievement"}, { - id: "3", - name: "AirPod Vendor", - price: "$15", - imageSrc: "http://img.b2bpic.net/free-photo/modern-stationary-collection-arrangement_23-2149309693.jpg?_wi=2", - imageAlt: "apple airpod wireless earbuds", - }, - { - id: "4", - name: "Rolex Watch Vendor", - price: "$15", - imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-checking-time_23-2148012918.jpg?_wi=2", - imageAlt: "rolex luxury watch timepiece", - }, - { - id: "5", - name: "Spider Hoodie Vendor", - price: "$15", - imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-young-man-sitting-chair_23-2149359874.jpg?_wi=2", - imageAlt: "designer spider hoodie streetwear", - }, - { - id: "6", - name: "Cartier Ring Vendor", - price: "$15", - imageSrc: "http://img.b2bpic.net/free-photo/engagement-wedding-rings-with-precious-stones_8353-10191.jpg?_wi=2", - imageAlt: "cartier luxury ring jewelry", - }, - { - id: "7", - name: "Jordan 1 Shoes Vendor", - price: "$15", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers_23-2151005663.jpg?_wi=2", - imageAlt: "jordan 1 basketball shoes mocha", - }, - { - id: "8", - name: "Lululemon Jacket Vendor", - price: "$15", - imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-woman-posing-sportswear-towel_23-2148429331.jpg?_wi=2", - imageAlt: "lululemon yoga jacket athletic", - }, - { - id: "9", - name: "Essentials Vendor", - price: "$15", - imageSrc: "http://img.b2bpic.net/free-photo/close-up-hands-rich-african-man-with-watch-cufflinks_627829-3352.jpg", - imageAlt: "essentials brand hoodie fear", - }, - { - id: "10", - name: "Moissanite Earring Vendor", - price: "$15", - imageSrc: "http://img.b2bpic.net/free-photo/high-fashion-look-glamor-closeup-portrait-beautiful-brunette-caucasian-young-woman-model-with-healthy-hair-green-accessory-jewelry_158538-13444.jpg", - imageAlt: "moissanite stud earring luxury", - }, - { - id: "11", - name: "Complete Bundle", - price: "$100", - imageSrc: "http://img.b2bpic.net/free-vector/flat-autumn-celebration-elements-collection_23-2149520842.jpg", - imageAlt: "bundle package deal offer", - }, + imageSrc: "http://img.b2bpic.net/free-vector/world-map-business-infographic_23-2148307428.jpg", imageAlt: "global vendor network map"}, ]; - const pricingPlans = [ + const allVendors = [ { - id: "individual", - price: "$15", - name: "Individual Vendor", - buttons: [{ text: "Purchase Vendor", href: "/contact" }], - features: [ - "Direct vendor WhatsApp contact", - "Vendor product links", - "24/7 access", - "Email delivery of contacts", - ], - }, + id: "1", name: "Cologne Vendor", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/top-view-valentines-day-present-fragnance-dark-surface-gift-perfume-love-color-couple-woman-ring-marriage_140725-108988.jpg?_wi=1", imageAlt: "premium cologne fragrance bottle"}, { - id: "bundle", - badge: "Best Value", - 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", - ], - }, + id: "2", name: "Moissanite Watch Vendor", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/elegant-businessman-checking-time_23-2148012930.jpg?_wi=1", imageAlt: "moissanite diamond watch luxury"}, + { + id: "3", name: "AirPod Vendor", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/modern-stationary-collection-arrangement_23-2149309693.jpg?_wi=1", imageAlt: "apple airpod wireless earbuds"}, + { + id: "4", name: "Rolex Watch Vendor", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/businesswoman-checking-time_23-2148012918.jpg?_wi=1", imageAlt: "rolex luxury watch timepiece"}, + { + id: "5", name: "Spider Hoodie Vendor", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/medium-shot-young-man-sitting-chair_23-2149359874.jpg?_wi=1", imageAlt: "designer spider hoodie streetwear"}, + { + id: "6", name: "Cartier Ring Vendor", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/engagement-wedding-rings-with-precious-stones_8353-10191.jpg?_wi=1", imageAlt: "cartier luxury ring jewelry"}, + { + id: "7", name: "Jordan 1 Shoes Vendor", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/close-up-futuristic-sneakers_23-2151005663.jpg?_wi=1", imageAlt: "jordan 1 basketball shoes mocha"}, + { + id: "8", name: "Lululemon Jacket Vendor", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/side-view-smiley-woman-posing-sportswear-towel_23-2148429331.jpg?_wi=1", imageAlt: "lululemon yoga jacket athletic"}, + { + id: "9", name: "Essentials Vendor", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/essentials-clothes-flat-lay_23-2149399999.jpg?_wi=1", imageAlt: "essentials clothing collection"}, + { + id: "10", name: "Moissanite Earrings Vendor", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/diamond-earrings-luxury-jewelry_8353-10192.jpg?_wi=1", imageAlt: "moissanite diamond earrings jewelry"}, + { + id: "11", name: "Premium Accessories Bundle", price: "$15", imageSrc: "http://img.b2bpic.net/free-photo/luxury-accessories-collection_23-2149400000.jpg?_wi=1", imageAlt: "luxury accessories collection bundle"}, ]; const footerColumns = [ { - title: "Product", - items: [ + title: "Product", items: [ + { label: "Home", href: "/" }, { 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: "/" }, @@ -175,12 +95,26 @@ export default function VendorsPage() { /> -
+
+ +
+ +
-
- -
- -
+
@@ -219,4 +141,4 @@ export default function VendorsPage() {
); -} \ No newline at end of file +}