|
| 1 | +import { MOCK_COMPANIES } from "./company"; |
| 2 | + |
| 3 | +export const MOCK_ACHIEVEMENTS: Achievement[] = [ |
| 4 | + { |
| 5 | + id: "achievement_cv_1", |
| 6 | + name: "Upload your CV", |
| 7 | + img: "https://sinfo.ams3.cdn.digitaloceanspaces.com/static/27-sinfo/achievements/cv/cv.webp", |
| 8 | + value: 1000, |
| 9 | + kind: "cv", |
| 10 | + description: "Upload your CV to be shared with the companies.", |
| 11 | + users: ["mock_user_id", "other_user_id_1", "other_user_id_2"], |
| 12 | + }, |
| 13 | + { |
| 14 | + id: "achievement_stand_1", |
| 15 | + name: "Visit Microsoft", |
| 16 | + img: "https://sinfo.ams3.cdn.digitaloceanspaces.com/static/27-sinfo/achievements/stands/stands_mercedes-benz_1.png", |
| 17 | + value: 50, |
| 18 | + kind: "stand", |
| 19 | + description: "Visit Microsoft.", |
| 20 | + company: MOCK_COMPANIES[3], |
| 21 | + users: ["other_user_id_1"], |
| 22 | + }, |
| 23 | + { |
| 24 | + id: "achievement_stand_2", |
| 25 | + name: "Visit Google", |
| 26 | + img: "https://sinfo.ams3.cdn.digitaloceanspaces.com/static/27-sinfo/achievements/stands/stands_freiheit.com-technologies-gmbh_1.png", |
| 27 | + value: 50, |
| 28 | + kind: "stand", |
| 29 | + description: "Visit Google.", |
| 30 | + company: MOCK_COMPANIES[4], |
| 31 | + users: ["mock_user_id", "other_user_id_2"], |
| 32 | + }, |
| 33 | + { |
| 34 | + id: "achievement_stand_3", |
| 35 | + name: "Visit Bliss Applications", |
| 36 | + img: "https://sinfo.ams3.cdn.digitaloceanspaces.com/static/27-sinfo/achievements/stands/stands_talkdesk_1.png", |
| 37 | + value: 50, |
| 38 | + kind: "stand", |
| 39 | + description: "Visit Bliss Applications.", |
| 40 | + company: MOCK_COMPANIES[6], |
| 41 | + }, |
| 42 | + { |
| 43 | + id: "achievement_stand_4", |
| 44 | + name: "Visit Cloudflare", |
| 45 | + img: "https://sinfo.ams3.cdn.digitaloceanspaces.com/static/27-sinfo/achievements/stands/stands_deloitte_1.png", |
| 46 | + value: 50, |
| 47 | + kind: "stand", |
| 48 | + description: "Visit Cloudflare.", |
| 49 | + company: MOCK_COMPANIES[9], |
| 50 | + users: ["other_user_id_1", "other_user_id_2", "mock_user_id"], |
| 51 | + }, |
| 52 | + { |
| 53 | + id: "achievement_presentation_1", |
| 54 | + name: "Syone presentation", |
| 55 | + img: "https://sinfo.ams3.cdn.digitaloceanspaces.com/static/27-sinfo/achievements/presentations/syone-software-solutions-27-sinfo.webp", |
| 56 | + value: 150, |
| 57 | + kind: "presentation", |
| 58 | + description: "Get to know Syone.", |
| 59 | + }, |
| 60 | + { |
| 61 | + id: "achievement_presentation_2", |
| 62 | + name: "Diconium presentation", |
| 63 | + img: "https://sinfo.ams3.cdn.digitaloceanspaces.com/static/27-sinfo/achievements/presentations/diconium-vw-one-true-love-27-sinfo.webp", |
| 64 | + value: 150, |
| 65 | + kind: "presentation", |
| 66 | + description: "Get to know Diconium.", |
| 67 | + users: ["mock_user_id"], |
| 68 | + }, |
| 69 | +]; |
0 commit comments