Update src/app/track-order/page.tsx

This commit is contained in:
2026-05-27 17:52:46 +00:00
parent d99c29fb96
commit d26155a3d2

View File

@@ -26,37 +26,21 @@ export default function LandingPage() {
<NavbarStyleFullscreen
navItems={[
{
name: "Home",
id: "/",
},
name: "Home", id: "/"},
{
name: "Products",
id: "/products",
},
name: "Products", id: "/products"},
{
name: "Details",
id: "/product-detail",
},
name: "Details", id: "/product-detail"},
{
name: "About Us",
id: "/about",
},
name: "About Us", id: "/about"},
{
name: "Contact",
id: "/contact",
},
name: "Contact", id: "/contact"},
{
name: "FAQ",
id: "/faq",
},
name: "FAQ", id: "/faq"},
{
name: "Track Order",
id: "/track-order",
},
name: "Track Order", id: "/track-order"},
{
name: "Policies",
id: "/legal",
},
name: "Policies", id: "/legal"},
]}
logoSrc="http://img.b2bpic.net/free-photo/computer-mouse-paper-bag-blue-background-top-view_169016-43524.jpg"
logoAlt="NovaCart Logo"
@@ -70,11 +54,8 @@ export default function LandingPage() {
title="Track Your NovaCart Order"
buttons={[
{
text: "Go to Tracking Portal",
href: "#",
},
text: "Go to Tracking Portal", href: "#"},
]}
text="Enter your order number and email address below to get real-time updates on your shipment status. For any issues, please refer to our FAQ or contact support directly."
/>
</div>
@@ -86,29 +67,11 @@ export default function LandingPage() {
useInvertedBackground={true}
features={[
{
title: "Missing Item?",
description: "If an item is missing from your order, please contact support with your order details for immediate assistance.",
imageSrc: "http://img.b2bpic.net/free-photo/view-mysterious-cardboard-box_23-2149603188.jpg",
imageAlt: "Missing Item",
titleImageSrc: "http://img.b2bpic.net/free-photo/happy-delivery-boy_23-2151952971.jpg",
buttonText: "Report Missing Item",
},
title: "Missing Item?", description: "If an item is missing from your order, please contact support with your order details for immediate assistance.", imageSrc: "http://img.b2bpic.net/free-photo/view-mysterious-cardboard-box_23-2149603188.jpg", imageAlt: "Missing Item", titleImageSrc: "http://img.b2bpic.net/free-photo/happy-delivery-boy_23-2151952971.jpg", buttonText: "Report Missing Item"},
{
title: "Incorrect Order?",
description: "Received the wrong product? Let us know, and we'll work swiftly to correct your order.",
imageSrc: "http://img.b2bpic.net/free-photo/golden-warning-sign-icon-dark-background_84443-94396.jpg",
imageAlt: "Incorrect Order",
titleImageSrc: "http://img.b2bpic.net/free-photo/person-living-inside-box_23-2151191422.jpg",
buttonText: "Report Incorrect Order",
},
title: "Incorrect Order?", description: "Received the wrong product? Let us know, and we'll work swiftly to correct your order.", imageSrc: "http://img.b2bpic.net/free-photo/golden-warning-sign-icon-dark-background_84443-94396.jpg", imageAlt: "Incorrect Order", titleImageSrc: "http://img.b2bpic.net/free-photo/person-living-inside-box_23-2151191422.jpg", buttonText: "Report Incorrect Order"},
{
title: "Delivery Delay?",
description: "If your order is delayed beyond the estimated delivery time, we're here to investigate and provide updates.",
imageSrc: "http://img.b2bpic.net/free-photo/front-view-clock-present-black-background_23-2148281071.jpg",
imageAlt: "Delivery Delay",
titleImageSrc: "http://img.b2bpic.net/free-vector/stopwatch-outline-moving-fast_78370-8142.jpg",
buttonText: "Check Delay Status",
},
title: "Delivery Delay?", description: "If your order is delayed beyond the estimated delivery time, we're here to investigate and provide updates.", imageSrc: "http://img.b2bpic.net/free-photo/front-view-clock-present-black-background_23-2148281071.jpg", imageAlt: "Delivery Delay", titleImageSrc: "http://img.b2bpic.net/free-vector/stopwatch-outline-moving-fast_78370-8142.jpg", buttonText: "Check Delay Status"},
]}
title="Need Help With Your Order?"
description="We're here to assist with any questions regarding your recent NovaCart purchase. Check our common queries or get in touch with our support team."
@@ -119,79 +82,47 @@ export default function LandingPage() {
<FooterBase
columns={[
{
title: "Shop",
items: [
title: "Shop", items: [
{
label: "All Products",
href: "/products",
},
label: "All Products", href: "/products"},
{
label: "Featured",
href: "/products",
},
label: "Featured", href: "/products"},
{
label: "Best Sellers",
href: "/products",
},
label: "Best Sellers", href: "/products"},
{
label: "Deals",
href: "/products",
},
label: "Deals", href: "/products"},
],
},
{
title: "Company",
items: [
title: "Company", items: [
{
label: "About Us",
href: "/about",
},
label: "About Us", href: "/about"},
{
label: "Contact",
href: "/contact",
},
label: "Contact", href: "/contact"},
{
label: "FAQ",
href: "/faq",
},
label: "FAQ", href: "/faq"},
{
label: "Our Team",
href: "/about#our-team",
},
label: "Our Team", href: "/about#our-team"},
],
},
{
title: "Support",
items: [
title: "Support", items: [
{
label: "Track Order",
href: "/track-order",
},
label: "Track Order", href: "/track-order"},
{
label: "Shipping Info",
href: "/faq",
},
label: "Shipping Info", href: "/faq"},
{
label: "Returns Policy",
href: "/legal",
},
label: "Returns Policy", href: "/legal"},
{
label: "Help Center",
href: "/contact",
},
label: "Help Center", href: "/contact"},
],
},
{
title: "Legal",
items: [
title: "Legal", items: [
{
label: "Privacy Policy",
href: "/legal#privacy-policy",
},
label: "Privacy Policy", href: "/legal#privacy-policy"},
{
label: "Terms & Conditions",
href: "/legal#terms-conditions",
},
label: "Terms & Conditions", href: "/legal#terms-conditions"},
],
},
]}