|
32 | 32 | name: 'Jorrik Klijnsma',
|
33 | 33 | letters: 'JK',
|
34 | 34 | title: 'Frontend Developer',
|
35 |
| - employer: 'Ordina', |
| 35 | + employer: 'Sopra Steria', |
36 | 36 | image: '/speakers/jk.webp',
|
37 | 37 | bio: 'Jorrik is a creative front-end developer at Sopra Steria with a passion for getting and sharing information. He focuses on new and inspiring topics. The moment AI ‘entered the chat’, it won his digital heart. His 8+ years of frontend experience is coming in at a close second.'
|
38 | 38 | },
|
39 | 39 | {
|
40 | 40 | name: 'Bjorn Schijff',
|
41 | 41 | letters: 'BS',
|
42 | 42 | title: 'Sr. Front-end Engineer / Architect',
|
43 |
| - employer: 'Ordina', |
| 43 | + employer: 'Sopra Steria', |
44 | 44 | image: '/speakers/bs.webp',
|
45 | 45 | bio: 'Bjorn is an experienced software developer with lots of experience using Angular, RxJS and TypeScript. He has a passion for anything tech related and is happy to share that passion with people.'
|
46 | 46 | }
|
|
49 | 49 | let focussedSpeaker: number | null = null;
|
50 | 50 | </script>
|
51 | 51 |
|
52 |
| -<div class="relative w-full bg-gray-300 px-2 py-10 text-black" id="speakers"> |
53 |
| - <div class="mb-24 w-full text-center text-4xl">Speakers</div> |
| 52 | +<div class="relative w-full bg-gray-300 px-2 py-10 text-white" id="speakers"> |
| 53 | + <div class="mb-24 w-full text-center text-4xl text-black">Speakers</div> |
54 | 54 |
|
55 | 55 | {#if focussedSpeaker === null}
|
56 | 56 | <div
|
|
61 | 61 | {#each speakers as speaker, index}
|
62 | 62 | <div class="mb-16 h-56 w-full">
|
63 | 63 | <div
|
64 |
| - class="flex w-full flex-col items-center rounded-2xl bg-fountain p-5 text-center shadow-xl" |
| 64 | + class="flex w-full flex-col items-center rounded-2xl bg-honey-flower p-5 text-center shadow-xl" |
65 | 65 | >
|
66 | 66 | {#if speaker.image}
|
67 | 67 | <img
|
|
71 | 71 | />
|
72 | 72 | {:else}
|
73 | 73 | <div
|
74 |
| - class="relative -mt-16 inline-flex h-32 w-32 items-center justify-center overflow-hidden rounded-full bg-fountain-600" |
| 74 | + class="relative -mt-16 inline-flex h-32 w-32 items-center justify-center overflow-hidden rounded-full bg-honey-flower-600" |
75 | 75 | >
|
76 |
| - <span class="text-6xl font-medium text-fountain-800">{speaker.letters}</span> |
| 76 | + <span class="text-6xl font-medium text-honey-flower-800">{speaker.letters}</span> |
77 | 77 | </div>
|
78 | 78 | {/if}
|
79 | 79 | <div class="text-xl md:text-2xl font-bold">{speaker.name}</div>
|
|
91 | 91 | on:click={() => (focussedSpeaker = index)}
|
92 | 92 | class="mt-2 cursor-pointer select-none"
|
93 | 93 | >
|
94 |
| - <TagBlock small backgroundColor="ordina">Read more</TagBlock> |
| 94 | + <TagBlock small backgroundColor="soprasteria">Read more</TagBlock> |
95 | 95 | </button>
|
96 | 96 | {:else}
|
97 |
| - <TagBlock class="mt-2 opacity-75" small backgroundColor="ordina" |
| 97 | + <TagBlock class="mt-2 opacity-75" small backgroundColor="soprasteria" |
98 | 98 | >Bio coming soon..</TagBlock
|
99 | 99 | >
|
100 | 100 | {/if}
|
|
106 | 106 | <div
|
107 | 107 | in:fade={{ duration: 250, delay: 250 }}
|
108 | 108 | out:fade={{ duration: 250 }}
|
109 |
| - class="mx-auto flex w-full flex-col items-center rounded-2xl bg-fountain p-5 text-center shadow-xl md:w-2/3 xl:w-1/3" |
| 109 | + class="mx-auto flex w-full flex-col items-center rounded-2xl bg-honey-flower p-5 text-center shadow-xl md:w-2/3 xl:w-1/3" |
110 | 110 | >
|
111 | 111 | {#if speakers[focussedSpeaker].image}
|
112 | 112 | <img
|
|
116 | 116 | />
|
117 | 117 | {:else}
|
118 | 118 | <div
|
119 |
| - class="relative -mt-16 inline-flex h-32 w-32 items-center justify-center overflow-hidden rounded-full bg-fountain-600" |
| 119 | + class="relative -mt-16 inline-flex h-32 w-32 items-center justify-center overflow-hidden rounded-full bg-honey-flower-600" |
120 | 120 | >
|
121 |
| - <span class="text-6xl font-medium text-fountain-800" |
| 121 | + <span class="text-6xl font-medium text-honey-flower-800" |
122 | 122 | >{speakers[focussedSpeaker].letters}</span
|
123 | 123 | >
|
124 | 124 | </div>
|
|
134 | 134 | {/if}
|
135 | 135 | </div>
|
136 | 136 | <button on:click={() => (focussedSpeaker = null)} class="mt-2 cursor-pointer select-none">
|
137 |
| - <TagBlock small backgroundColor="ordina">Back</TagBlock> |
| 137 | + <TagBlock small backgroundColor="soprasteria">Back</TagBlock> |
138 | 138 | </button>
|
139 | 139 | </div>
|
140 | 140 | {/if}
|
|
0 commit comments