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

This commit is contained in:
2026-05-27 23:46:53 +00:00
parent cc82d1c323
commit edfd46bf21

View File

@@ -26,25 +26,15 @@ export default function LandingPage() {
<NavbarStyleCentered <NavbarStyleCentered
navItems={[ navItems={[
{ {
name: "Home", name: "Home", id: "/"},
id: "/",
},
{ {
name: "About", name: "About", id: "/about"},
id: "/about",
},
{ {
name: "Gallery", name: "Gallery", id: "/gallery"},
id: "/gallery",
},
{ {
name: "Track Order", name: "Track Order", id: "/track-order"},
id: "/track-order",
},
{ {
name: "Contact", name: "Contact", id: "/contact"},
id: "/contact",
},
]} ]}
brandName="Malavida" brandName="Malavida"
/> />
@@ -56,9 +46,7 @@ export default function LandingPage() {
title="Track Your Malavida Order" title="Track Your Malavida Order"
buttons={[ buttons={[
{ {
text: "Go to Tracking Portal", text: "Go to Tracking Portal", href: "#", onClick: () => alert('Redirecting to external tracking service...'),
href: "#",
onClick: "() => alert('Redirecting to external tracking service...')",
props: {}, props: {},
}, },
]} ]}
@@ -73,20 +61,11 @@ export default function LandingPage() {
tag="Reliable Delivery" tag="Reliable Delivery"
metrics={[ metrics={[
{ {
id: "1", id: "1", value: "99.8%", description: "On-Time Deliveries"},
value: "99.8%",
description: "On-Time Deliveries",
},
{ {
id: "2", id: "2", value: "2-5", description: "Days Average Shipping"},
value: "2-5",
description: "Days Average Shipping",
},
{ {
id: "3", id: "3", value: "Global", description: "Shipping Coverage"},
value: "Global",
description: "Shipping Coverage",
},
]} ]}
metricsAnimation="slide-up" metricsAnimation="slide-up"
/> />
@@ -96,54 +75,33 @@ export default function LandingPage() {
<FooterBase <FooterBase
columns={[ columns={[
{ {
title: "Company", title: "Company", items: [
items: [
{ {
label: "About Us", label: "About Us", href: "/about"},
href: "/about",
},
{ {
label: "Our Story", label: "Our Story", href: "/about"},
href: "/about",
},
{ {
label: "Careers", label: "Careers", href: "#"},
href: "#",
},
], ],
}, },
{ {
title: "Shop", title: "Shop", items: [
items: [
{ {
label: "Collections", label: "Collections", href: "/gallery"},
href: "/gallery",
},
{ {
label: "New Arrivals", label: "New Arrivals", href: "/gallery"},
href: "/gallery",
},
{ {
label: "Sale", label: "Sale", href: "#"},
href: "#",
},
], ],
}, },
{ {
title: "Support", title: "Support", items: [
items: [
{ {
label: "Contact Us", label: "Contact Us", href: "/contact"},
href: "/contact",
},
{ {
label: "Track Order", label: "Track Order", href: "/track-order"},
href: "/track-order",
},
{ {
label: "FAQ", label: "FAQ", href: "/contact#faq"},
href: "/contact#faq",
},
], ],
}, },
]} ]}