import { dt } from "@/lib/dt" 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", }, ], } 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 previousStays = [ { uid: "0", dateArrive: new Date("04 27 2024"), dateDepart: new Date("04 28 2024"), guests: 2, hotel: "Scandic Helsinki Hub", }, { uid: "1", dateArrive: new Date("05 27 2024"), dateDepart: new Date("05 28 2024"), guests: 2, hotel: "Scandic Örebro Central", }, { uid: "2", dateArrive: new Date("06 27 2024"), dateDepart: new Date("06 28 2024"), guests: 2, hotel: "Scandic Oslo City", }, { uid: "3", dateArrive: new Date("04 27 2024"), dateDepart: new Date("04 28 2024"), guests: 2, hotel: "Scandic Lorem", }, { uid: "4", dateArrive: new Date("05 27 2024"), dateDepart: new Date("05 28 2024"), guests: 2, hotel: "Scandic Ipsum", }, { uid: "5", dateArrive: new Date("06 27 2024"), dateDepart: new Date("06 28 2024"), guests: 2, hotel: "Scandic Dolor Sin Amet", }, { uid: "6", dateArrive: new Date("06 27 2024"), dateDepart: new Date("06 28 2024"), guests: 2, hotel: "Scandic Anglais", }, { uid: "7", dateArrive: new Date("06 27 2024"), dateDepart: new Date("06 28 2024"), guests: 2, hotel: "Scandic Park", }, { uid: "8", dateArrive: new Date("06 27 2024"), dateDepart: new Date("06 28 2024"), guests: 2, hotel: "Scandic Klara", }, { uid: "9", dateArrive: new Date("06 27 2024"), dateDepart: new Date("06 28 2024"), guests: 2, hotel: "Scandic Dolor A", }, { uid: "10", dateArrive: new Date("06 27 2024"), dateDepart: new Date("06 28 2024"), guests: 2, hotel: "Scandic B", }, { uid: "11", dateArrive: new Date("06 27 2024"), dateDepart: new Date("06 28 2024"), guests: 2, hotel: "Scandic C", }, { uid: "12", dateArrive: new Date("06 27 2024"), dateDepart: new Date("06 28 2024"), guests: 2, hotel: "Scandic D", }, { uid: "13", dateArrive: new Date("06 27 2024"), dateDepart: new Date("06 28 2024"), guests: 2, hotel: "Scandic E", }, { uid: "14", dateArrive: new Date("06 27 2024"), dateDepart: new Date("06 28 2024"), guests: 2, hotel: "Scandic F", }, { uid: "15", dateArrive: new Date("06 27 2024"), dateDepart: new Date("06 28 2024"), guests: 2, hotel: "Scandic G", }, ] export const upcomingStays = [ { uid: "0", dateArrive: new Date("04 27 2024"), dateDepart: new Date("04 28 2024"), guests: 2, hotel: "Scandic Helsinki Hub", }, { uid: "1", dateArrive: new Date("05 27 2024"), dateDepart: new Date("05 28 2024"), guests: 2, hotel: "Scandic Örebro Central", }, { uid: "2", dateArrive: new Date("06 27 2024"), dateDepart: new Date("06 28 2024"), guests: 2, hotel: "Scandic Oslo City", }, { uid: "3", dateArrive: new Date("04 27 2024"), dateDepart: new Date("04 28 2024"), guests: 2, hotel: "Scandic Lorem", }, { uid: "4", dateArrive: new Date("05 27 2024"), dateDepart: new Date("05 28 2024"), guests: 2, hotel: "Scandic Ipsum", }, { uid: "5", dateArrive: new Date("06 27 2024"), dateDepart: new Date("06 28 2024"), guests: 2, hotel: "Scandic Dolor Sin Amet", }, ] export const extendedUser = { journeys: challenges.journeys, nights: 14, shortcuts, upcomingStays, victories: challenges.victories, }