124 lines
2.4 KiB
TypeScript
124 lines
2.4 KiB
TypeScript
export const benefits = [
|
|
{
|
|
id: 1,
|
|
value: "€5 voucher",
|
|
explanation: "to spend in bar & restaurant for each night",
|
|
subtitle:
|
|
"Lorem ipsum dolor sit amet consectetur. Pharetra lectus sagittis turpis blandit feugiat amet enim massa.",
|
|
href: "#",
|
|
},
|
|
{
|
|
id: 2,
|
|
value: "Breakfast to go",
|
|
explanation: "for early birds, when staying",
|
|
subtitle:
|
|
"Lorem ipsum dolor sit amet consectetur. Pharetra lectus sagittis turpis blandit feugiat amet enim massa.",
|
|
href: "#",
|
|
},
|
|
{
|
|
id: 3,
|
|
value: "15% discount",
|
|
explanation: "in the restaurant & the bar",
|
|
subtitle:
|
|
"Lorem ipsum dolor sit amet consectetur. Pharetra lectus sagittis turpis blandit feugiat amet enim massa.",
|
|
href: "#",
|
|
},
|
|
]
|
|
|
|
export const challenges = {
|
|
journeys: [
|
|
{
|
|
tag: "After work queen",
|
|
title: "Try 3 Hotel Bars, Pocket 200 Points",
|
|
},
|
|
{
|
|
tag: "Dine & Shine",
|
|
title: "Visit 3 scandic Restaurants, Earn 150 Points",
|
|
},
|
|
],
|
|
victories: [
|
|
{
|
|
tag: "Capital Explorer",
|
|
title: "Stay in 3 scandic hotels, in three Capitals, Gain 2000 Points",
|
|
},
|
|
{
|
|
tag: "Friends Feast",
|
|
title: "Dine with 3 Buddies, Snag a Free Breakfast",
|
|
},
|
|
{
|
|
tag: "Eco Warrior",
|
|
title: "Choose Green, Get 500 Points",
|
|
},
|
|
],
|
|
}
|
|
|
|
export const nextLevelPerks = {
|
|
nextLevel: "Close Friend",
|
|
perks: [
|
|
{
|
|
id: 1,
|
|
|
|
explanation: "Free soft drink voucher for the kids when staying",
|
|
},
|
|
{
|
|
id: 2,
|
|
|
|
explanation: "Free early check in",
|
|
},
|
|
{
|
|
id: 3,
|
|
explanation: "25% extra bonus points on each stay",
|
|
},
|
|
{
|
|
id: 4,
|
|
explanation: "25% extra bonus points on each stay",
|
|
},
|
|
],
|
|
}
|
|
|
|
export const shortcuts = [
|
|
{
|
|
href: "#",
|
|
title: "My Benefit",
|
|
},
|
|
{
|
|
href: "#",
|
|
title: "Program overview",
|
|
},
|
|
// {
|
|
// href: "#",
|
|
// title: "Scandic Friends shop",
|
|
// },
|
|
// {
|
|
// href: "#",
|
|
// title: "Fire and safety",
|
|
// },
|
|
// {
|
|
// href: "#",
|
|
// title: "Our sustainability work",
|
|
// },
|
|
// {
|
|
// href: "#",
|
|
// title: "How you earn points",
|
|
// },
|
|
// {
|
|
// href: "#",
|
|
// title: "How you use points",
|
|
// },
|
|
// {
|
|
// href: "#",
|
|
// title: "Missing points",
|
|
// },
|
|
// {
|
|
// href: "#",
|
|
// title: "Our term and conditions",
|
|
// },
|
|
]
|
|
|
|
export const extendedUser = {
|
|
journeys: challenges.journeys,
|
|
nights: 14,
|
|
shortcuts,
|
|
victories: challenges.victories,
|
|
}
|