@jjlmoya/landings 0.5.0 → 0.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/landing/team/assets/gamebob-team-hero.webp +0 -0
- package/src/landing/team/assets/team-og.webp +0 -0
- package/src/landing/team/components/BobModelBook.astro +4 -4
- package/src/landing/team/components/CompanyWorks.astro +9 -78
- package/src/landing/team/components/HumanTouch.astro +102 -38
- package/src/landing/team/components/TeamHero.astro +21 -12
- package/src/landing/team/entry.ts +16 -6
- package/src/landing/team/i18n/de.ts +181 -0
- package/src/landing/team/i18n/en.ts +60 -157
- package/src/landing/team/i18n/es.ts +16 -112
- package/src/landing/team/i18n/fr.ts +181 -0
- package/src/landing/team/i18n/id.ts +181 -0
- package/src/landing/team/i18n/index.ts +28 -2
- package/src/landing/team/i18n/it.ts +181 -0
- package/src/landing/team/i18n/ja.ts +181 -0
- package/src/landing/team/i18n/ko.ts +181 -0
- package/src/landing/team/i18n/nl.ts +181 -0
- package/src/landing/team/i18n/pl.ts +181 -0
- package/src/landing/team/i18n/pt.ts +181 -0
- package/src/landing/team/i18n/ru.ts +181 -0
- package/src/landing/team/i18n/sv.ts +181 -0
- package/src/landing/team/i18n/tr.ts +181 -0
- package/src/landing/team/i18n/zh.ts +181 -0
- package/src/landing/team/styles/BobModelBook.css +8 -5
- package/src/landing/team/styles/HumanTouch.css +116 -12
- package/src/landing/team/styles/SupportTransition.css +7 -1
- package/src/landing/team/styles/TeamHero.css +101 -16
- package/src/layouts/PreviewLayout.astro +0 -3
- package/src/pages/[locale].astro +3 -4
- package/src/tests/no_en_dash.test.ts +1 -0
- package/src/types.ts +6 -5
|
@@ -0,0 +1,181 @@
|
|
|
1
|
+
import type { LandingCardContent } from '../../../types';
|
|
2
|
+
|
|
3
|
+
export const cardContent: LandingCardContent = {
|
|
4
|
+
slug: 'mannschaft',
|
|
5
|
+
seo: {
|
|
6
|
+
title: 'Das GameBob Team',
|
|
7
|
+
description: 'Erfahren Sie mehr über den Katzenvorstand, den menschlichen Entwickler und die Geschichte hinter GameBob Studio, einem Indie-Projekt aus Mallorca.',
|
|
8
|
+
}
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
export const pageContent = {
|
|
12
|
+
hero: {
|
|
13
|
+
kicker: 'Irgendwo auf Mallorca',
|
|
14
|
+
titlePrefix: 'Game',
|
|
15
|
+
titleAccent: 'Bob',
|
|
16
|
+
lead: 'VON KATZEN GEFÜHRT. VON EINEM MENSCHEN GEBAUT.',
|
|
17
|
+
stageLabel: 'Bob beaufsichtigt das GameBob-Studio',
|
|
18
|
+
sceneAlt: 'Pixel-Art-Szene von Bob, der die Aufsicht führt, während JJ an einem Laptop arbeitet'
|
|
19
|
+
},
|
|
20
|
+
companyWorks: {
|
|
21
|
+
eyebrow: 'Wie dieses Unternehmen funktioniert',
|
|
22
|
+
title: 'Der Katzenvorstand',
|
|
23
|
+
text: 'GameBob ist nach königlicher Autorität organisiert, nicht nach Unternehmensphantasie. Bob dominiert den Vorstand. Keine flachen Hierarchien: Alles ist vertikal, unbestreitbar und leicht einschüchternd. Demokratie ist weder heute, noch morgen, noch jemals in Sicht.',
|
|
24
|
+
members: {
|
|
25
|
+
bob: {
|
|
26
|
+
name: 'Bob',
|
|
27
|
+
role: 'Besitzerin von allem',
|
|
28
|
+
status: 'Autoritätsstufe: Absolut. Professionelle Esserin.'
|
|
29
|
+
},
|
|
30
|
+
terra: {
|
|
31
|
+
name: 'Terra',
|
|
32
|
+
role: 'Die Matriarchin',
|
|
33
|
+
status: 'Der Ursprung. Starrt auf Code, bis er sich verurteilt fühlt.'
|
|
34
|
+
},
|
|
35
|
+
ambar: {
|
|
36
|
+
name: 'Ámbar',
|
|
37
|
+
role: 'Senior-Aufseherin',
|
|
38
|
+
status: 'Aufrechterhaltung des Machtgleichgewichts (durch extremes Kuscheln).'
|
|
39
|
+
},
|
|
40
|
+
ambarChiquilla: {
|
|
41
|
+
name: 'Ámbar Chiquilla',
|
|
42
|
+
role: 'Junior-Auditorin',
|
|
43
|
+
status: 'Schüchterne Jägerin. Spezialisiert auf das Verfolgen des Mauszeigers.'
|
|
44
|
+
},
|
|
45
|
+
drac: {
|
|
46
|
+
name: 'Drac',
|
|
47
|
+
role: 'Außendienst',
|
|
48
|
+
status: 'Stimmungskanone. Lebt sein bestes Leben auf der Straße.'
|
|
49
|
+
},
|
|
50
|
+
jj: {
|
|
51
|
+
name: 'JJ',
|
|
52
|
+
role: 'Essensbeschaffer',
|
|
53
|
+
status: 'Implementierungsabt. Status: Zahlenmäßig unterlegen.'
|
|
54
|
+
}
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
humanTouch: {
|
|
58
|
+
eyebrow: 'Menschliche Ressource',
|
|
59
|
+
title: 'Der Mensch',
|
|
60
|
+
textBefore: 'Bob beschloss, dass Empathie Teil dieser Seite sein sollte, weil "Menschen sich mit Menschen verbinden". Also befahl sie diesen Abschnitt und verlangte, da sie weiß, dass wir unter Aufmerksamkeitsdefiziten leiden, ihn mit Animationen und ',
|
|
61
|
+
wordWithRagebait: 'Hellen',
|
|
62
|
+
textAfter: ' Lichtern zu füllen.',
|
|
63
|
+
ragebaitExplanation: 'Immer mit der Ruhe: Das große "H" in "Hellen" ist Absicht. Der Katzenvorstand versichert, dass das Hinweisen auf Tippfehler die Klicks um 400% steigert.',
|
|
64
|
+
chipsLabel: 'Menschliche Bereiche',
|
|
65
|
+
boardLabel: 'Menschliche Betriebsakte',
|
|
66
|
+
alert: 'MENSCHLICHE AKTE MIT HOHEM DOPAMINSPAS',
|
|
67
|
+
portraitAlt: 'jjlmoya auf einem scheinbar sexy Profilfoto',
|
|
68
|
+
poseLabel: 'Erzwungene Pose',
|
|
69
|
+
name: 'jjlmoya',
|
|
70
|
+
role: 'Frontend-Entwickler',
|
|
71
|
+
bio: 'Verwandelt Kuriositäten, Probleme und tägliche Details in Tools, interaktive Erlebnisse und Systeme, die über Jahre hinweg wachsen können.',
|
|
72
|
+
stats: [
|
|
73
|
+
['Basis', 'Mallorca, Spanien'],
|
|
74
|
+
['Rolle', 'Entwickler'],
|
|
75
|
+
['Erfahrung', 'Mehr als ein Katzenleben'],
|
|
76
|
+
['Sprachen', 'ES · CA · EN']
|
|
77
|
+
],
|
|
78
|
+
chips: [
|
|
79
|
+
'Frontend',
|
|
80
|
+
'Apps',
|
|
81
|
+
'Webs',
|
|
82
|
+
'Automatisierung',
|
|
83
|
+
'Produkt',
|
|
84
|
+
'Schnittstellen',
|
|
85
|
+
'Performance',
|
|
86
|
+
'Barrierefreiheit',
|
|
87
|
+
'Datenschutz',
|
|
88
|
+
'Nützliche Ideen'
|
|
89
|
+
],
|
|
90
|
+
stamp: 'MENSCHLICHE BERÜHRUNG ERFORDERLICH!',
|
|
91
|
+
linksLabel: 'Berufliche Links',
|
|
92
|
+
partyPlayer: {
|
|
93
|
+
eyebrow: 'Bobs Audiolabor',
|
|
94
|
+
title: 'Vom Vorstand genehmigter Partysong',
|
|
95
|
+
text: 'Drücke auf Play und das Banner der menschlichen Ressourcen schaltet in den Notfall-Feiermodus.',
|
|
96
|
+
audioLabel: 'Bobs Partysong abspielen',
|
|
97
|
+
playLabel: 'Bobs Partysong abspielen',
|
|
98
|
+
pauseLabel: 'Bobs Partysong pausieren'
|
|
99
|
+
}
|
|
100
|
+
},
|
|
101
|
+
translationComic: {
|
|
102
|
+
eyebrow: 'Der Ursprung',
|
|
103
|
+
title: 'Wie alles begann',
|
|
104
|
+
spainFood: 'Spanien bedeutet Essen.',
|
|
105
|
+
worldFood: 'Die Welt bedeutet mehr Essen.',
|
|
106
|
+
humanAssignment: 'Der Mensch versteht den Auftrag.',
|
|
107
|
+
languagesLabel: 'Platzhalter für unterstützte Sprachen',
|
|
108
|
+
text: 'Bobs Masterplan zur Übernahme deines Geldes begann mit einer einfachen Erkenntnis: Geld konnte in Essen umgewandelt werden. Seitdem ist nichts mehr betriebssicher.',
|
|
109
|
+
quote: 'Mehr Arbeit. Mehr Geld. Mehr Essen.',
|
|
110
|
+
closing: 'Der Plan war einfach. Der Mensch erholt sich immer noch.',
|
|
111
|
+
scenes: [
|
|
112
|
+
{
|
|
113
|
+
label: 'Mein großer Fehler',
|
|
114
|
+
title: 'Bob entdeckte das System.',
|
|
115
|
+
text: 'Eines Tages machte ich einen irreparablen Fehler: Ich ließ sie sehen, wie ich an ihr Futter kam. An diesem Tag begann Bob alles zu verstehen.',
|
|
116
|
+
assetAlt: '',
|
|
117
|
+
formula: ['Geld', 'Essen']
|
|
118
|
+
},
|
|
119
|
+
{
|
|
120
|
+
label: 'Der Traum',
|
|
121
|
+
title: 'Der Magen gab die Richtung vor.',
|
|
122
|
+
text: 'Bob träumte Tag und night ohne Pause und kam zu dem Schluss, dass sie gerne viel mehr Futter hätte.',
|
|
123
|
+
assetAlt: '',
|
|
124
|
+
formula: ['Mehr Geld', 'Mehr Essen']
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
label: 'Der Masterplan',
|
|
128
|
+
title: 'Bob dachte über Einnahmen nach.',
|
|
129
|
+
text: 'Bob gab sich nicht damit zufrieden, das System zu verstehen. Sie fragte sich, wie man wiederkehrend Geld produzieren könnte, am besten ohne eine Pfote zu rühren.',
|
|
130
|
+
assetAlt: '',
|
|
131
|
+
formula: ['Tools', 'Geld']
|
|
132
|
+
},
|
|
133
|
+
{
|
|
134
|
+
label: 'GameBob wird geboren',
|
|
135
|
+
title: 'Der Mensch erhielt den Befehl.',
|
|
136
|
+
text: 'Der Befehl war einfach: Der Mensch würde Tools, Spiele und Seiten bauen. Bob würde die Strategie überwachen. Das Essen würde die Vision finanzieren.',
|
|
137
|
+
assetAlt: '',
|
|
138
|
+
formula: ['Mehr Projekte', 'Mehr Essen']
|
|
139
|
+
}
|
|
140
|
+
]
|
|
141
|
+
},
|
|
142
|
+
bobModelBook: {
|
|
143
|
+
eyebrow: 'Notfallplan',
|
|
144
|
+
logoPrefix: 'Only',
|
|
145
|
+
logoName: 'Bob',
|
|
146
|
+
text: 'Bob hat mich gezwungen, diesen Bereich zu erstellen, da sie ihre Präsenz im Falle eines Scheiterns aller anderen Pläne als wirtschaftlich tragfähige Alternative ansieht. Ich habe nur den Befehl ausgeführt.',
|
|
147
|
+
galleryLabel: 'Bobs Redaktionsgalerie',
|
|
148
|
+
unlockedAlt: 'Bob in redaktioneller Pose',
|
|
149
|
+
lockedAlt: 'Gesperrte Pose von Bob',
|
|
150
|
+
openLabel: 'Bobs Pose öffnen',
|
|
151
|
+
closeLabel: 'Bobs Pose schließen',
|
|
152
|
+
premiumTitle: 'OnlyBob Premium',
|
|
153
|
+
premiumText: 'Bob hat beschlossen, dass diese Posen für einen Gelegenheitsnutzer zu mächtig sind. Der vollständige Zugang wird geöffnet, wenn das Geschäftsmodell ihr emotional ausgereift erscheint.',
|
|
154
|
+
buyLabel: 'Zugang kaufen (ich bin noch nicht verzweifelt)',
|
|
155
|
+
trialLabel: '24-Stunden-Testversion',
|
|
156
|
+
subscriptionLabel: 'OnlyBob-Testversion aktiv',
|
|
157
|
+
subscriptionPrefix: '',
|
|
158
|
+
expiredLabel: 'Testversion abgelaufen'
|
|
159
|
+
},
|
|
160
|
+
productManifesto: {
|
|
161
|
+
eyebrow: 'Produktphilosophie',
|
|
162
|
+
title: 'Hohe Qualität für hohen Gewinn.',
|
|
163
|
+
description: 'Die Katze hat Hunderte von SEO-Handbüchern gelesen, um jeden Teil der Seite zu optimieren, trägt 5 Bücher über digitales Marketing mit sich herum und fängt an, über Stoizismus zu lesen. Dies sind die Regeln, die sie mir auferlegt hat, um die Prüfung zu bestehen und ihr Qualitätssiegel zu erhalten.',
|
|
164
|
+
values: [
|
|
165
|
+
'Nützlich',
|
|
166
|
+
'Visuell',
|
|
167
|
+
'Schnell',
|
|
168
|
+
'Lustig',
|
|
169
|
+
'Einzigartig',
|
|
170
|
+
'Datenschutz',
|
|
171
|
+
'Miau'
|
|
172
|
+
]
|
|
173
|
+
},
|
|
174
|
+
supportTransition: {
|
|
175
|
+
eyebrow: 'Der Vorstand ist offen für',
|
|
176
|
+
title: 'Feedback.',
|
|
177
|
+
text: 'Ideen, Fehlerberichte, Übersetzungskorrekturen und Projektunterstützung. Der Vorstand kann keine schnellen Antworten versprechen. Hauptsächlich, weil es Katzen sind. Die Personalabteilung wird weiterhin alles sorgfältig lesen.',
|
|
178
|
+
linkText: 'Unterstütze uns',
|
|
179
|
+
comingSoonLabel: 'Demnächst'
|
|
180
|
+
}
|
|
181
|
+
};
|
|
@@ -2,9 +2,10 @@ import type { LandingCardContent } from '../../../types';
|
|
|
2
2
|
|
|
3
3
|
export const cardContent: LandingCardContent = {
|
|
4
4
|
slug: 'team',
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
seo: {
|
|
6
|
+
title: 'GameBob Studio Team',
|
|
7
|
+
description: 'Meet the feline board, the human developer, and the story behind GameBob Studio, an indie project created from Mallorca.',
|
|
8
|
+
}
|
|
8
9
|
};
|
|
9
10
|
|
|
10
11
|
export const pageContent = {
|
|
@@ -12,165 +13,127 @@ export const pageContent = {
|
|
|
12
13
|
kicker: 'Somewhere in Mallorca',
|
|
13
14
|
titlePrefix: 'Game',
|
|
14
15
|
titleAccent: 'Bob',
|
|
15
|
-
lead: 'RUN BY CATS. BUILT BY
|
|
16
|
-
stageLabel: 'Bob supervising
|
|
17
|
-
sceneAlt: 'Pixel
|
|
16
|
+
lead: 'RUN BY CATS. BUILT BY A HUMAN.',
|
|
17
|
+
stageLabel: 'Bob supervising GameBob studio',
|
|
18
|
+
sceneAlt: 'Pixel art scene of Bob supervising while JJ works on a laptop'
|
|
18
19
|
},
|
|
19
20
|
companyWorks: {
|
|
20
21
|
eyebrow: 'How this company works',
|
|
21
22
|
title: 'The Feline Board',
|
|
22
|
-
text: 'GameBob is organized by
|
|
23
|
-
secretDossier: 'Secret technical dossier',
|
|
24
|
-
closeDossier: 'Close dossier',
|
|
23
|
+
text: 'GameBob is organized by royal authority, not corporate fantasy. Bob dominates the board. No flat models here: everything is vertical, unquestionable, and slightly intimidating. Democracy is not in sight today, tomorrow, or ever.',
|
|
25
24
|
members: {
|
|
26
25
|
bob: {
|
|
27
26
|
name: 'Bob',
|
|
28
|
-
role: '
|
|
29
|
-
status: 'Authority level: Absolute. Professional eater.'
|
|
30
|
-
dossier: 'Maximum authority. Reviews strategy, snack allocation and whether the current direction deserves a blink.'
|
|
27
|
+
role: 'Owner of Everything',
|
|
28
|
+
status: 'Authority level: Absolute. Professional eater.'
|
|
31
29
|
},
|
|
32
30
|
terra: {
|
|
33
31
|
name: 'Terra',
|
|
34
32
|
role: 'The Matriarch',
|
|
35
|
-
status: 'The origin. Stares at code until it feels judged.'
|
|
36
|
-
dossier: 'Senior presence. Keeps the board emotionally calibrated and silently audits suspicious decisions.'
|
|
33
|
+
status: 'The origin. Stares at code until it feels judged.'
|
|
37
34
|
},
|
|
38
35
|
ambar: {
|
|
39
|
-
name: '
|
|
36
|
+
name: 'Ámbar',
|
|
40
37
|
role: 'Senior Supervisor',
|
|
41
|
-
status: 'Maintaining balance of power (
|
|
42
|
-
dossier: 'Oversees attention distribution, lap availability and the human department morale budget.'
|
|
38
|
+
status: 'Maintaining the balance of power (through extreme cuddles).'
|
|
43
39
|
},
|
|
44
40
|
ambarChiquilla: {
|
|
45
|
-
name: '
|
|
41
|
+
name: 'Ámbar Chiquilla',
|
|
46
42
|
role: 'Junior Auditor',
|
|
47
|
-
status: '
|
|
48
|
-
dossier: 'Small-format auditor. Specializes in careful observation, cursor pursuit and gentle escalation.'
|
|
43
|
+
status: 'Shy hunter. Specialized in mouse cursor tracking.'
|
|
49
44
|
},
|
|
50
45
|
drac: {
|
|
51
46
|
name: 'Drac',
|
|
52
47
|
role: 'Field Operations',
|
|
53
|
-
status: '
|
|
54
|
-
dossier: 'External operations lead. Maintains field independence and appears when the conditions are personally acceptable.'
|
|
48
|
+
status: 'Life of the party. Living his best life on the streets.'
|
|
55
49
|
},
|
|
56
50
|
jj: {
|
|
57
51
|
name: 'JJ',
|
|
58
|
-
role: '
|
|
59
|
-
status: 'Implementation Dept. Status: Outnumbered.'
|
|
60
|
-
dossier: 'Implementation department. Builds, ships, translates and maintains the platform under board supervision.'
|
|
61
|
-
}
|
|
62
|
-
}
|
|
63
|
-
},
|
|
64
|
-
teamComic: {
|
|
65
|
-
eyebrow: 'Mini webcomic',
|
|
66
|
-
title: 'Every team member gets a scene, not just a card.',
|
|
67
|
-
scenes: {
|
|
68
|
-
strategic: {
|
|
69
|
-
title: 'Strategic planning',
|
|
70
|
-
setting: 'Bob studies a map of the world and identifies regions with promising snack logistics.',
|
|
71
|
-
speech: ['More languages.', 'More humans.', 'More food.'],
|
|
72
|
-
propLabel: 'map'
|
|
73
|
-
},
|
|
74
|
-
qa: {
|
|
75
|
-
title: 'Quality assurance',
|
|
76
|
-
setting: 'A supervisor sleeps on documents labeled extremely important until the layout feels calmer.',
|
|
77
|
-
speech: ['This button needs warmth.', 'Also, I require the chair.'],
|
|
78
|
-
propLabel: 'papers'
|
|
79
|
-
},
|
|
80
|
-
implementation: {
|
|
81
|
-
title: 'Implementation',
|
|
82
|
-
setting: 'The human writes code while the board contributes unexpected input through the keyboard.',
|
|
83
|
-
speech: ['Ship it.', 'No, wait. Pet me first.'],
|
|
84
|
-
propLabel: 'keyboard'
|
|
52
|
+
role: 'Food provider',
|
|
53
|
+
status: 'Implementation Dept. Status: Outnumbered.'
|
|
85
54
|
}
|
|
86
55
|
}
|
|
87
56
|
},
|
|
88
|
-
behindJoke: {
|
|
89
|
-
eyebrow: 'Behind the joke',
|
|
90
|
-
title: 'The jokes are real. The work is too.',
|
|
91
|
-
text: 'Behind GameBob there is one solo developer designing, building, translating and maintaining everything from Mallorca. The goal is simple: make tools that are useful, visual, fast and pleasant to use.',
|
|
92
|
-
island: 'Mallorca'
|
|
93
|
-
},
|
|
94
57
|
humanTouch: {
|
|
95
|
-
eyebrow: 'Human
|
|
58
|
+
eyebrow: 'Human Resource',
|
|
96
59
|
title: 'The Human',
|
|
97
|
-
textBefore: 'Bob decided
|
|
98
|
-
wordWithRagebait: '
|
|
99
|
-
textAfter: '.',
|
|
100
|
-
ragebaitExplanation: 'Everyone relax: the "
|
|
60
|
+
textBefore: 'Bob decided empathy should be part of this page because "humans connect with humans". So she ordered this section and, knowing we suffer from attention deficits, demanded we fill it with animations and ',
|
|
61
|
+
wordWithRagebait: 'brigth',
|
|
62
|
+
textAfter: ' lights.',
|
|
63
|
+
ragebaitExplanation: 'Everyone relax: the spelling of "brigth" is intentional. The feline board asserts that pointing out typos increases visits by 400%.',
|
|
101
64
|
chipsLabel: 'Human areas',
|
|
102
|
-
boardLabel: 'Human
|
|
103
|
-
alert: 'HIGH
|
|
104
|
-
portraitAlt: 'jjlmoya in a
|
|
105
|
-
poseLabel: '
|
|
65
|
+
boardLabel: 'Human operational file',
|
|
66
|
+
alert: 'HIGH DOPAMINE HUMAN FILE',
|
|
67
|
+
portraitAlt: 'jjlmoya in a mockingly sexy profile photo',
|
|
68
|
+
poseLabel: 'Forced Pose',
|
|
106
69
|
name: 'jjlmoya',
|
|
107
70
|
role: 'Frontend Developer',
|
|
108
|
-
bio: '
|
|
71
|
+
bio: 'Transforms curiosities, problems, and daily details into tools, interactive experiences, and systems that can grow for years.',
|
|
109
72
|
stats: [
|
|
110
73
|
['Base', 'Mallorca, Spain'],
|
|
111
74
|
['Role', 'Developer'],
|
|
112
|
-
['Experience', 'More than
|
|
75
|
+
['Experience', 'More than a cat life'],
|
|
113
76
|
['Languages', 'ES · CA · EN']
|
|
114
77
|
],
|
|
115
78
|
chips: [
|
|
116
79
|
'Frontend',
|
|
117
80
|
'Apps',
|
|
118
|
-
'
|
|
81
|
+
'Webs',
|
|
119
82
|
'Automation',
|
|
120
83
|
'Product',
|
|
121
84
|
'Interfaces',
|
|
122
85
|
'Performance',
|
|
123
86
|
'Accessibility',
|
|
124
87
|
'Privacy',
|
|
125
|
-
'Useful
|
|
88
|
+
'Useful Ideas'
|
|
126
89
|
],
|
|
127
90
|
stamp: 'MANDATORY HUMAN TOUCH!',
|
|
128
91
|
linksLabel: 'Professional links',
|
|
129
92
|
partyPlayer: {
|
|
130
|
-
eyebrow: 'Bob audio lab',
|
|
131
|
-
title: '
|
|
132
|
-
text: 'Press play and the human resource banner
|
|
133
|
-
audioLabel: 'Play Bob party
|
|
134
|
-
playLabel: 'Play Bob party
|
|
135
|
-
pauseLabel: 'Pause Bob party
|
|
93
|
+
eyebrow: 'Bob\'s audio lab',
|
|
94
|
+
title: 'Party theme approved by the board',
|
|
95
|
+
text: 'Press play and the human resource banner goes into emergency celebration mode.',
|
|
96
|
+
audioLabel: 'Play Bob\'s party theme',
|
|
97
|
+
playLabel: 'Play Bob\'s party theme',
|
|
98
|
+
pauseLabel: 'Pause Bob\'s party theme'
|
|
136
99
|
}
|
|
137
100
|
},
|
|
138
101
|
translationComic: {
|
|
139
|
-
eyebrow: 'The
|
|
102
|
+
eyebrow: 'The Origin',
|
|
140
103
|
title: 'How it all started',
|
|
141
104
|
spainFood: 'Spain means food.',
|
|
142
105
|
worldFood: 'The world means more food.',
|
|
143
106
|
humanAssignment: 'The human understands the assignment.',
|
|
144
107
|
languagesLabel: 'Supported language placeholders',
|
|
145
|
-
text: 'Bob\'s Master Plan to take over your money
|
|
108
|
+
text: 'Bob\'s Master Plan to take over your money started with a simple realization: money could be converted into food. Since then, nothing has been operationally safe.',
|
|
146
109
|
quote: 'More work. More money. More food.',
|
|
147
110
|
closing: 'The plan was simple. The human is still recovering.',
|
|
148
111
|
scenes: [
|
|
149
112
|
{
|
|
150
|
-
label: 'My
|
|
113
|
+
label: 'My big mistake',
|
|
151
114
|
title: 'Bob discovered the system.',
|
|
152
|
-
text: 'One day I made an irreparable mistake: I let her see how I got her food. That day Bob
|
|
115
|
+
text: 'One day I made an irreparable mistake: I let her see how I got her food. That day Bob began to understand everything.',
|
|
153
116
|
assetAlt: '',
|
|
154
117
|
formula: ['Money', 'Food']
|
|
155
118
|
},
|
|
156
119
|
{
|
|
157
120
|
label: 'The dream',
|
|
158
121
|
title: 'The stomach set the course.',
|
|
159
|
-
text: 'Bob dreamed day and night without stopping and concluded that she would like to have
|
|
122
|
+
text: 'Bob dreamed day and night without stopping and concluded that she would like to have a lot more food.',
|
|
160
123
|
assetAlt: '',
|
|
161
124
|
formula: ['More money', 'More food']
|
|
162
125
|
},
|
|
163
126
|
{
|
|
164
127
|
label: 'The master plan',
|
|
165
|
-
title: 'Bob thought about
|
|
166
|
-
text: 'Bob
|
|
128
|
+
title: 'Bob thought about income.',
|
|
129
|
+
text: 'Bob didn\'t settle for understanding the system. She began to wonder how to produce money recurringly, preferably without moving a paw.',
|
|
167
130
|
assetAlt: '',
|
|
168
131
|
formula: ['Tools', 'Money']
|
|
169
132
|
},
|
|
170
133
|
{
|
|
171
134
|
label: 'GameBob is born',
|
|
172
135
|
title: 'The human received the order.',
|
|
173
|
-
text: 'The order was simple: the human would build tools, games and pages. Bob would supervise strategy. Food would
|
|
136
|
+
text: 'The order was simple: the human would build tools, games, and pages. Bob would supervise the strategy. Food would fund the vision.',
|
|
174
137
|
assetAlt: '',
|
|
175
138
|
formula: ['More projects', 'More food']
|
|
176
139
|
}
|
|
@@ -180,99 +143,39 @@ export const pageContent = {
|
|
|
180
143
|
eyebrow: 'Emergency plan',
|
|
181
144
|
logoPrefix: 'Only',
|
|
182
145
|
logoName: 'Bob',
|
|
183
|
-
text: 'Bob forced me to create this section because, if
|
|
184
|
-
galleryLabel: '
|
|
146
|
+
text: 'Bob forced me to create this section because, if all else fails, she considers her presence to be an economically viable alternative. I have only implemented the order.',
|
|
147
|
+
galleryLabel: 'Bob\'s editorial gallery',
|
|
185
148
|
unlockedAlt: 'Bob in an editorial pose',
|
|
186
|
-
lockedAlt: 'Locked Bob
|
|
187
|
-
openLabel: 'Open Bob pose',
|
|
188
|
-
closeLabel: 'Close Bob pose',
|
|
149
|
+
lockedAlt: 'Locked pose of Bob',
|
|
150
|
+
openLabel: 'Open Bob\'s pose',
|
|
151
|
+
closeLabel: 'Close Bob\'s pose',
|
|
189
152
|
premiumTitle: 'OnlyBob Premium',
|
|
190
|
-
premiumText: 'Bob has decided these poses are too powerful for casual
|
|
191
|
-
buyLabel: 'Buy access (
|
|
192
|
-
trialLabel: '
|
|
193
|
-
subscriptionLabel: 'OnlyBob trial
|
|
153
|
+
premiumText: 'Bob has decided that these poses are too powerful for a casual user. Full access will open when the business model seems emotionally mature to her.',
|
|
154
|
+
buyLabel: 'Buy access (I\'m not desperate yet)',
|
|
155
|
+
trialLabel: '24-hour free trial',
|
|
156
|
+
subscriptionLabel: 'Active OnlyBob trial',
|
|
194
157
|
subscriptionPrefix: '',
|
|
195
158
|
expiredLabel: 'Trial expired'
|
|
196
159
|
},
|
|
197
160
|
productManifesto: {
|
|
198
161
|
eyebrow: 'Product philosophy',
|
|
199
|
-
title: 'High quality for high
|
|
200
|
-
description: 'The cat has read hundreds of SEO manuals to
|
|
162
|
+
title: 'High quality for high profit.',
|
|
163
|
+
description: 'The cat has read hundreds of SEO manuals to optimize every piece of the page, carries 5 digital marketing books, and is starting to read about stoicism. These are the rules she has set for me to pass screening and get her seal of quality.',
|
|
201
164
|
values: [
|
|
202
165
|
'Useful',
|
|
203
166
|
'Visual',
|
|
204
167
|
'Fast',
|
|
205
|
-
'
|
|
168
|
+
'Fun',
|
|
206
169
|
'Unique',
|
|
207
170
|
'Privacy',
|
|
208
171
|
'Meow'
|
|
209
172
|
]
|
|
210
173
|
},
|
|
211
|
-
memoryWall: {
|
|
212
|
-
eyebrow: 'Memory wall',
|
|
213
|
-
title: 'For every animal still part of the story.',
|
|
214
|
-
text: 'This will become a warm archive of photos, dates, little rituals and memories. Gentle rather than sad: a place for everyone who left pawprints, noise, warmth and timing chaos behind.',
|
|
215
|
-
memories: {
|
|
216
|
-
m1: { name: 'Memory slot 01', line: 'A small place for a big personality.' },
|
|
217
|
-
m2: { name: 'Memory slot 02', line: 'Favorite nap, favorite sound, favorite tiny habit.' },
|
|
218
|
-
m3: { name: 'Memory slot 03', line: 'A story that deserves its own warm corner.' },
|
|
219
|
-
m4: { name: 'Memory slot 04', line: 'For every animal who made the house a team.' }
|
|
220
|
-
}
|
|
221
|
-
},
|
|
222
174
|
supportTransition: {
|
|
223
175
|
eyebrow: 'The board is open to',
|
|
224
176
|
title: 'Feedback.',
|
|
225
|
-
text: 'Ideas, bug reports, translation
|
|
226
|
-
linkText: 'Support Us
|
|
227
|
-
comingSoonLabel: 'Coming
|
|
228
|
-
inbox: {
|
|
229
|
-
ideas: 'ideas',
|
|
230
|
-
bugs: 'bugs',
|
|
231
|
-
fixes: 'fixes',
|
|
232
|
-
support: 'support'
|
|
233
|
-
}
|
|
234
|
-
},
|
|
235
|
-
teamRoster: {
|
|
236
|
-
eyebrow: 'Current team',
|
|
237
|
-
title: 'A serious studio, supervised by unserious experts.',
|
|
238
|
-
text: 'This is the first rough pass: Bob leads the page today, and the rest of the team has placeholder cards ready to receive names, photos, stories, and properly ridiculous titles.',
|
|
239
|
-
members: {
|
|
240
|
-
bob: {
|
|
241
|
-
name: 'Bob',
|
|
242
|
-
role: 'Executive Nap Officer',
|
|
243
|
-
bio: 'Black cat, founder of the quiet QA department, and the first member of the GameBob team.',
|
|
244
|
-
tag: 'Final approval: sleeps on it'
|
|
245
|
-
},
|
|
246
|
-
c2: {
|
|
247
|
-
name: 'Cat teammate 02',
|
|
248
|
-
role: 'Chaos QA',
|
|
249
|
-
bio: 'Specializes in unexpected clicks, keyboard walks, and finding the one layout that still needs love.',
|
|
250
|
-
tag: 'Name pending'
|
|
251
|
-
},
|
|
252
|
-
c3: {
|
|
253
|
-
name: 'Cat teammate 03',
|
|
254
|
-
role: 'Comfort Designer',
|
|
255
|
-
bio: 'Keeps the studio soft, warm, and legally required to contain at least one cozy corner.',
|
|
256
|
-
tag: 'Name pending'
|
|
257
|
-
},
|
|
258
|
-
c4: {
|
|
259
|
-
name: 'Cat teammate 04',
|
|
260
|
-
role: 'Focus Interruptor',
|
|
261
|
-
bio: 'Protects the project from overwork by introducing regular breaks at inconvenient times.',
|
|
262
|
-
tag: 'Name pending'
|
|
263
|
-
},
|
|
264
|
-
c5: {
|
|
265
|
-
name: 'Cat teammate 05',
|
|
266
|
-
role: 'Snack Auditor',
|
|
267
|
-
bio: 'Monitors all kitchen-related decisions and maintains strong opinions about empty bowls.',
|
|
268
|
-
tag: 'Name pending'
|
|
269
|
-
},
|
|
270
|
-
jj: {
|
|
271
|
-
name: 'JJL Moya',
|
|
272
|
-
role: 'Solo Developer',
|
|
273
|
-
bio: 'Builds the games, tools, copy, interfaces, systems, and the occasional feature requested by a tail.',
|
|
274
|
-
tag: 'Human department'
|
|
275
|
-
}
|
|
276
|
-
}
|
|
177
|
+
text: 'Ideas, bug reports, translation corrections, and project support. The executive board cannot promise quick answers. Mainly because they are cats. The human resource will continue to read everything carefully.',
|
|
178
|
+
linkText: 'Go to Support Us',
|
|
179
|
+
comingSoonLabel: 'Coming Soon'
|
|
277
180
|
}
|
|
278
181
|
};
|