52 lines
903 B
JavaScript
52 lines
903 B
JavaScript
|
|
export const workProcessSteps = [
|
|
{
|
|
id: 1,
|
|
title: 'listingMadeEasy',
|
|
description: 'createAds',
|
|
},
|
|
{
|
|
id: 2,
|
|
title: "instantReach",
|
|
description: "connectVastAudience",
|
|
},
|
|
{
|
|
id: 3,
|
|
title: "effortlessConnection",
|
|
description: "interactSecureMessaging",
|
|
},
|
|
{
|
|
id: 4,
|
|
title: "enjoyBenefits",
|
|
description: "reapRewards",
|
|
},
|
|
];
|
|
|
|
export const quickLinks = [
|
|
{
|
|
id: 1,
|
|
href: "/about-us",
|
|
labelKey: "aboutUs",
|
|
},
|
|
{
|
|
id: 2,
|
|
href: "/contact-us",
|
|
labelKey: "contactUs",
|
|
},
|
|
{
|
|
id: 3,
|
|
href: "/subscription",
|
|
labelKey: "subscription",
|
|
},
|
|
{
|
|
id: 4,
|
|
href: "/blogs",
|
|
labelKey: "ourBlog",
|
|
},
|
|
{
|
|
id: 5,
|
|
href: "/faqs",
|
|
labelKey: "faqs",
|
|
},
|
|
];
|