diff --git a/src/app/about/page.tsx b/src/app/about/page.tsx index b4d82af..099e742 100644 --- a/src/app/about/page.tsx +++ b/src/app/about/page.tsx @@ -11,25 +11,23 @@ import { CheckCircle, Star } from "lucide-react"; export default function AboutPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Vendors", id: "vendors" }, - { name: "Products", id: "products" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { title: "Product", items: [ - { label: "Vendors", href: "/vendors" }, - { label: "Products", href: "/products" }, - { label: "Pricing", href: "/pricing" }, + { label: "Vendors", href: "#vendors" }, + { label: "Products", href: "#products" }, + { label: "Pricing", href: "#pricing" }, { label: "API", href: "/api" }, ], }, { title: "Company", items: [ - { label: "About Us", href: "/about" }, + { label: "About Us", href: "#about" }, { label: "Blog", href: "/blog" }, { label: "Careers", href: "/careers" }, { label: "Press", href: "/press" }, @@ -38,7 +36,7 @@ export default function AboutPage() { { title: "Support", items: [ { label: "Help Center", href: "/help" }, - { label: "Contact", href: "/contact" }, + { label: "Contact", href: "#contact" }, { label: "Privacy Policy", href: "/privacy" }, { label: "Terms of Service", href: "/terms" }, ], @@ -52,7 +50,7 @@ export default function AboutPage() { borderRadius="pill" contentWidth="small" sizing="largeSizeMediumTitles" - background="aurora" + background="circleGradient" cardStyle="inset" primaryButtonStyle="shadow" secondaryButtonStyle="glass" @@ -61,7 +59,7 @@ export default function AboutPage() { @@ -70,6 +68,7 @@ export default function AboutPage() { @@ -96,17 +96,29 @@ export default function AboutPage() { speed={40} testimonials={[ { - id: "1", name: "Sarah Chen", handle: "CEO, TechFlow Industries", testimonial: "VendorZ transformed our sourcing process. We found premium suppliers in days instead of months. The platform is intuitive and the vendor quality is exceptional.", imageSrc: "http://img.b2bpic.net/free-photo/content-beautiful-businesswoman-standing-window_1262-1778.jpg", imageAlt: "portrait professional woman business"}, + id: "1", name: "Sarah Chen", handle: "CEO, TechFlow Industries", testimonial: + "VendorZ transformed our sourcing process. We found premium suppliers in days instead of months. The platform is intuitive and the vendor quality is exceptional.", imageSrc: + "http://img.b2bpic.net/free-photo/content-beautiful-businesswoman-standing-window_1262-1778.jpg", imageAlt: "portrait professional woman business"}, { - id: "2", name: "Michael Rodriguez", handle: "Procurement Manager, GlobalTrade Co", testimonial: "The competitive pricing and vendor verification gave us confidence in our purchases. Our procurement costs dropped by 30% within the first quarter.", imageSrc: "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3796.jpg", imageAlt: "portrait professional man business"}, + id: "2", name: "Michael Rodriguez", handle: "Procurement Manager, GlobalTrade Co", testimonial: + "The competitive pricing and vendor verification gave us confidence in our purchases. Our procurement costs dropped by 30% within the first quarter.", imageSrc: + "http://img.b2bpic.net/free-photo/blond-businessman-happy-expression_1194-3796.jpg", imageAlt: "portrait professional man business"}, { - id: "3", name: "Elena Petrov", handle: "Operations Director, Premium Goods Ltd", testimonial: "VendorZ's seamless API integration saved our team hundreds of hours. Order management is now completely automated and error-free.", imageSrc: "http://img.b2bpic.net/free-photo/friendly-successful-business-woman-posing-with-arms-crossed_74855-2813.jpg", imageAlt: "portrait professional woman confident"}, + id: "3", name: "Elena Petrov", handle: "Operations Director, Premium Goods Ltd", testimonial: + "VendorZ's seamless API integration saved our team hundreds of hours. Order management is now completely automated and error-free.", imageSrc: + "http://img.b2bpic.net/free-photo/friendly-successful-business-woman-posing-with-arms-crossed_74855-2813.jpg", imageAlt: "portrait professional woman confident"}, { - id: "4", name: "James Wu", handle: "Supply Chain Lead, NextGen Manufacturing", testimonial: "The platform's transparency and reliability are unmatched. We've established long-term partnerships with vendors we discovered on VendorZ.", imageSrc: "http://img.b2bpic.net/free-photo/content-senior-businessman-with-arms-crossed_1262-1790.jpg", imageAlt: "portrait professional man leader"}, + id: "4", name: "James Wu", handle: "Supply Chain Lead, NextGen Manufacturing", testimonial: + "The platform's transparency and reliability are unmatched. We've established long-term partnerships with vendors we discovered on VendorZ.", imageSrc: + "http://img.b2bpic.net/free-photo/content-senior-businessman-with-arms-crossed_1262-1790.jpg", imageAlt: "portrait professional man leader"}, { - id: "5", name: "Lisa Anderson", handle: "Business Owner, Anderson Retail Group", testimonial: "Customer support is outstanding. Every question is answered promptly, and the team goes above and beyond to ensure our success.", imageSrc: "http://img.b2bpic.net/free-photo/close-up-successful-entrepreneur_1098-3855.jpg", imageAlt: "portrait professional woman entrepreneur"}, + id: "5", name: "Lisa Anderson", handle: "Business Owner, Anderson Retail Group", testimonial: + "Customer support is outstanding. Every question is answered promptly, and the team goes above and beyond to ensure our success.", imageSrc: + "http://img.b2bpic.net/free-photo/close-up-successful-entrepreneur_1098-3855.jpg", imageAlt: "portrait professional woman entrepreneur"}, { - id: "6", name: "David Okonkwo", handle: "Founder, African Exports Hub", testimonial: "VendorZ opened doors to international markets we didn't know existed. Our business has grown exponentially since joining the platform.", imageSrc: "http://img.b2bpic.net/free-photo/businessman-smiling-camera_107420-95907.jpg", imageAlt: "portrait professional man global"}, + id: "6", name: "David Okonkwo", handle: "Founder, African Exports Hub", testimonial: + "VendorZ opened doors to international markets we didn't know existed. Our business has grown exponentially since joining the platform.", imageSrc: + "http://img.b2bpic.net/free-photo/businessman-smiling-camera_107420-95907.jpg", imageAlt: "portrait professional man global"}, ]} /> @@ -117,9 +129,15 @@ export default function AboutPage() { description="Whether you're a buyer looking for reliable vendors or a seller wanting to expand your market reach, VendorZ has a place for you." inputs={[ { name: "name", type: "text", placeholder: "Full Name", required: true }, - { name: "email", type: "email", placeholder: "Email Address", required: true }, - { name: "role", type: "text", placeholder: "Your Role (Buyer/Seller)", required: true }, - { name: "company", type: "text", placeholder: "Company Name", required: true }, + { + name: "email", type: "email", placeholder: "Email Address", required: true, + }, + { + name: "role", type: "text", placeholder: "Your Role (Buyer/Seller)", required: true, + }, + { + name: "company", type: "text", placeholder: "Company Name", required: true, + }, ]} textarea={{ name: "message", placeholder: "Tell us about your interest in VendorZ...", rows: 4, @@ -142,4 +160,4 @@ export default function AboutPage() { ); -} \ No newline at end of file +} diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index 30a9bcb..0740ad9 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -3,44 +3,37 @@ import { ThemeProvider } from "@/providers/themeProvider/ThemeProvider"; import NavbarStyleCentered from "@/components/navbar/NavbarStyleCentered/NavbarStyleCentered"; import ContactSplitForm from "@/components/sections/contact/ContactSplitForm"; -import SocialProofOne from "@/components/sections/socialProof/SocialProofOne"; import FooterBaseReveal from "@/components/sections/footer/FooterBaseReveal"; import Link from "next/link"; -import { Users } from "lucide-react"; export default function ContactPage() { const navItems = [ - { name: "Home", id: "home" }, - { name: "Vendors", id: "vendors" }, - { name: "Products", id: "products" }, - { name: "About", id: "about" }, - { name: "Contact", id: "contact" }, + { name: "Home", id: "/" }, + { name: "About", id: "/about" }, + { name: "Contact", id: "/contact" }, ]; const footerColumns = [ { - title: "Product", - items: [ - { label: "Vendors", href: "/vendors" }, - { label: "Products", href: "/products" }, - { label: "Pricing", href: "/pricing" }, + title: "Product", items: [ + { label: "Vendors", href: "#vendors" }, + { label: "Products", href: "#products" }, + { label: "Pricing", href: "#pricing" }, { label: "API", href: "/api" }, ], }, { - title: "Company", - items: [ - { label: "About Us", href: "/about" }, + title: "Company", items: [ + { label: "About Us", href: "#about" }, { label: "Blog", href: "/blog" }, { label: "Careers", href: "/careers" }, { label: "Press", href: "/press" }, ], }, { - title: "Support", - items: [ + title: "Support", items: [ { label: "Help Center", href: "/help" }, - { label: "Contact", href: "/contact" }, + { label: "Contact", href: "#contact" }, { label: "Privacy Policy", href: "/privacy" }, { label: "Terms of Service", href: "/terms" }, ], @@ -54,70 +47,49 @@ export default function ContactPage() { borderRadius="pill" contentWidth="small" sizing="largeSizeMediumTitles" - background="aurora" - cardStyle="inset" - primaryButtonStyle="shadow" + background="circleGradient" + cardStyle="glass-elevated" + primaryButtonStyle="gradient" secondaryButtonStyle="glass" headingFontWeight="medium" > -
+
-
- -
-