feat: add hobbies to sebin index page

This commit is contained in:
Sebin Nyshkim 2025-06-23 19:18:15 +02:00
parent 2ac721058f
commit 841c76c13a
3 changed files with 61 additions and 1 deletions

View file

@ -24,7 +24,6 @@ const firstName = 'Sebin',
nipples: '#413a3a',
penis: '#413a3a'
},
hobbies = ['working out', 'travels', 'camping', 'video games', 'tech'],
penis = {
shape: 'humanoid',
type: 'grower',
@ -219,6 +218,15 @@ const getWingspan = () => `${wingspan / 100} m (${toImperial(wingspan)})`;
const getTraits = (type) => {
switch (type) {
case 'hobbies':
return [
{ icon: 'fa6-solid:dumbbell', type: 'Hobby', text: 'working out' },
{ icon: 'fa6-solid:plane', type: 'Hobby', text: 'traveling' },
{ icon: 'fa6-solid:campground', type: 'Hobby', text: 'camping' },
{ icon: 'fa6-solid:gamepad', type: 'Hobby', text: 'video games' },
{ icon: 'fa6-solid:laptop-code', type: 'Hobby', text: 'tech' }
];
case 'general':
return [
{ icon: 'fa6-solid:ruler', type: 'Tail Length', text: getTailLength() },