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