-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathkeystatic.config.ts
More file actions
618 lines (607 loc) · 19.3 KB
/
Copy pathkeystatic.config.ts
File metadata and controls
618 lines (607 loc) · 19.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
import { config, fields, collection, singleton } from "@keystatic/core";
import { block } from "@keystatic/core/content-components";
export default config({
storage: import.meta.env.PUBLIC_KEYSTATIC_GITHUB_APP_SLUG
? {
kind: "github",
repo: {
owner: import.meta.env.PUBLIC_KEYSTATIC_REPO_OWNER!,
name: import.meta.env.PUBLIC_KEYSTATIC_REPO_NAME!,
},
}
: {
kind: "local",
},
singletons: {
hero: singleton({
label: "Hero Section",
path: "src/content/hero/",
schema: {
name: fields.text({
label: "Name",
description: "Your name or site name",
}),
title: fields.text({
label: "Title",
description: "Main headline/tagline",
}),
description: fields.text({
label: "Description",
multiline: true,
description: "Hero section description",
}),
avatar: fields.image({
label: "Avatar",
directory: "src/assets/hero",
publicPath: "@assets/hero/",
}),
location: fields.text({
label: "Location",
description: 'e.g., "🇧🇷 Brazil"',
}),
socialLinks: fields.array(
fields.object({
url: fields.text({
label: "URL",
description: "Profile URL or mailto: link",
validation: { isRequired: true },
}),
icon: fields.select({
label: "Icon",
description: "Select a social media icon",
options: [
{ label: "GitHub", value: "GitHub" },
{ label: "LinkedIn", value: "LinkedIn" },
{ label: "Twitter/X", value: "Twitter" },
{ label: "Bluesky", value: "Bluesky" },
{ label: "Instagram", value: "Instagram" },
{ label: "YouTube", value: "YouTube" },
{ label: "Email", value: "Email" },
{ label: "CodeTips (Folder)", value: "FolderCode" },
],
defaultValue: "GitHub",
}),
label: fields.text({
label: "Aria Label",
description: "Accessibility label (e.g., 'GitHub', 'Email')",
validation: { isRequired: true },
}),
}),
{
label: "Social Links",
itemLabel: (props) => props.fields.label.value || "New Link",
description: "Your social media and contact links",
}
),
},
}),
about: singleton({
label: "About",
path: "src/content/about/",
format: {
contentField: "content",
},
schema: {
title: fields.text({
label: "Title",
description: "About section title",
}),
photo: fields.image({
label: "Photo",
directory: "src/assets/about",
publicPath: "@assets/about/",
description: "Your photo for the about section",
}),
content: fields.markdoc({
label: "Content",
description: "About section content (supports Markdown)",
extension: "md",
}),
link: fields.url({
label: "LinkedIn URL or Other",
description: "Your LinkedIn profile URL or other link",
}),
},
}),
general: singleton({
label: "General Settings",
path: "src/content/general/",
schema: {
projectsLayout: fields.select({
label: "Projects Page Layout",
description:
"Choose the layout style for the projects listing page",
options: [
{
label: "Grid (default) — Category sections with card grids",
value: "grid",
},
{
label: "Horizontal Tabs — Category tabs at the top",
value: "tabs-horizontal",
},
{
label: "Sidebar — Category menu on the left side",
value: "tabs-vertical",
},
],
defaultValue: "grid",
}),
enableThemeSelector: fields.checkbox({
label: "Enable Theme Selector",
description: "Show theme dropdown instead of toggle switch",
defaultValue: true,
}),
extraLinksEnabled: fields.checkbox({
label: "Enable Extra Links FAB",
description: "Show floating action button with extra links",
defaultValue: true,
}),
extraLinks: fields.array(
fields.object({
link: fields.text({
label: "Link URL",
description: "URL or path (e.g., /blog or https://example.com)",
validation: { isRequired: true },
}),
icon: fields.select({
label: "Icon",
description: "Select an icon from Lucide icon library",
options: [
{ label: "Flower (Flower2)", value: "Flower2" },
{ label: "Book (BookOpen)", value: "BookOpen" },
{ label: "File (FileText)", value: "FileText" },
{ label: "Code (CodeXml)", value: "CodeXml" },
{ label: "Mail (Mail)", value: "Mail" },
{ label: "Home (Home)", value: "Home" },
{ label: "User (User)", value: "User" },
{ label: "Briefcase (Briefcase)", value: "Briefcase" },
{
label: "Graduation Cap (GraduationCap)",
value: "GraduationCap",
},
{ label: "Link (Link)", value: "Link" },
],
defaultValue: "Link",
}),
label: fields.text({
label: "Tooltip Label",
description: "Label shown on hover",
validation: { isRequired: true },
}),
displayOn: fields.select({
label: "Display On",
description: "Where this link should be displayed",
options: [
{ label: "Both (Dock & Fab)", value: "both" },
{ label: "Only Dock (Mobile)", value: "dock" },
{ label: "Only Fab (Desktop)", value: "fab" },
],
defaultValue: "both",
}),
}),
{
label: "Extra Links",
itemLabel: (props) => props.fields.label.value || "New Link",
description: "Links to display in the floating action button",
}
),
showAboutSection: fields.checkbox({
label: "Show About Section",
defaultValue: true,
}),
showProjectsSection: fields.checkbox({
label: "Show Projects Section",
defaultValue: true,
}),
showBlogSection: fields.checkbox({
label: "Show Blog Section",
defaultValue: true,
}),
showWorkSection: fields.checkbox({
label: "Show Work Experience Section",
defaultValue: true,
}),
showEducationSection: fields.checkbox({
label: "Show Education Section",
defaultValue: true,
}),
showHackathonsSection: fields.checkbox({
label: "Show Hackathons Section",
defaultValue: true,
}),
showContactSection: fields.checkbox({
label: "Show Contact Section",
defaultValue: true,
}),
},
}),
contact: singleton({
label: "Contact Section",
path: "src/content/contact/",
format: { contentField: "content" },
schema: {
icon: fields.select({
label: "Section Icon",
description: "Icon displayed at the top of contact section",
options: [
{
label: "Message Circle (MessageCircleCode)",
value: "MessageCircleCode",
},
{ label: "Mail (Mail)", value: "Mail" },
{ label: "Phone (Phone)", value: "Phone" },
],
defaultValue: "MessageCircleCode",
}),
content: fields.markdoc({
label: "Contact Message",
description: "Main contact message (supports Markdown)",
extension: "md",
}),
linkUrl: fields.url({
label: "Contact Link URL",
description: "URL for contact link (e.g., Twitter profile)",
}),
linkText: fields.text({
label: "Contact Link Text",
description: "Text for the contact link",
}),
footerIcon: fields.select({
label: "Footer Icon",
description: "Icon for footer credit",
options: [
{ label: "Pickaxe", value: "Pickaxe" },
{ label: "Hammer (Hammer)", value: "Hammer" },
{ label: "Heart (Heart)", value: "Heart" },
],
defaultValue: "Pickaxe",
}),
footerText: fields.text({
label: "Footer Text",
description: "Footer credit text",
defaultValue: "Crafted by an Artisan",
}),
footerLinkText: fields.text({
label: "Footer Link Text",
description: "Name/text for footer link",
}),
footerLinkUrl: fields.url({
label: "Footer Link URL",
description: "URL for footer credit link",
}),
},
}),
},
collections: {
projectCategories: collection({
label: "Project Categories",
path: "src/content/projectCategories/*",
slugField: "title",
format: {
data: "yaml",
},
schema: {
title: fields.slug({
name: { label: "Category Name" },
}),
description: fields.text({
label: "Description",
description: "Brief description of this category",
multiline: true,
}),
icon: fields.text({
label: "Icon (Emoji)",
description: 'An emoji icon for this category (e.g., "🚀", "🤖", "🧪")',
}),
sortOrder: fields.integer({
label: "Sort Order",
description: "Order in which this category appears on the projects page (lower = first)",
defaultValue: 0,
}),
},
}),
work: collection({
label: "Work Experience",
path: "src/content/work/*",
slugField: "title",
format: {
contentField: "content",
},
schema: {
title: fields.slug({
name: { label: "Company Name" },
}),
subtitle: fields.text({
label: "Position",
description: "Job title/role",
}),
location: fields.text({
label: "Location",
description: "Country or city (e.g., 'Brazil', 'Remote')",
}),
startDate: fields.date({
label: "Start Date",
validation: { isRequired: true },
}),
endDate: fields.date({
label: "End Date",
description: "Leave empty if current position",
}),
logo: fields.image({
label: "Company Logo",
directory: "src/assets/work",
publicPath: "@assets/work/",
description: "Optional company logo",
}),
link: fields.url({
label: "Company Website",
description: "Optional link to company website",
}),
content: fields.markdoc({
label: "Description",
description: "Job responsibilities and achievements",
extension: "md",
}),
skills: fields.array(fields.text({ label: "Skill" }), {
label: "Skills/Technologies",
itemLabel: (props) => props.value,
description: "Technologies and tools used in this role",
}),
},
}),
education: collection({
label: "Education",
path: "src/content/education/*",
slugField: "title",
format: {
contentField: "content",
},
schema: {
title: fields.slug({
name: { label: "Institution Name" },
}),
subtitle: fields.text({
label: "Degree/Course",
description: 'e.g., "Bachelor of Computer Science"',
}),
startDate: fields.date({
label: "Start Date",
validation: { isRequired: true },
}),
endDate: fields.date({
label: "End Date",
description: "Leave empty if ongoing",
}),
logo: fields.image({
label: "Institution Logo",
directory: "src/assets/education",
publicPath: "@assets/education/",
description: "Optional institution logo",
}),
link: fields.url({
label: "Institution Website",
description: "Optional link to institution website",
}),
content: fields.markdoc({
label: "Description",
description: "Education details and achievements",
extension: "md",
}),
},
}),
projects: collection({
label: "Projects",
path: "src/content/projects/*",
slugField: "title",
entryLayout: "content",
format: {
contentField: "content",
},
schema: {
featured: fields.checkbox({
label: "Featured Project",
description: "Show this project on the homepage",
defaultValue: false,
}),
category: fields.relationship({
label: "Category",
description: "Assign a category to group this project on the projects page",
collection: "projectCategories",
}),
title: fields.slug({
name: { label: "Project Name" },
}),
description: fields.text({
label: "Short Description",
multiline: true,
description: "Brief project summary for cards",
}),
image: fields.image({
label: "Project Image",
directory: "src/assets/projects",
publicPath: "@assets/projects/",
validation: { isRequired: true },
description: "Main project image",
}),
startDate: fields.date({
label: "Start Date",
validation: { isRequired: true },
}),
endDate: fields.date({
label: "End Date",
description: "Leave empty if ongoing",
}),
skills: fields.array(fields.text({ label: "Skill" }), {
label: "Skills/Technologies",
itemLabel: (props) => props.value,
description: "Technologies and tools used in this project",
}),
demoLink: fields.url({
label: "Demo Link",
description: "Live demo URL (optional)",
}),
sourceLink: fields.url({
label: "Source Code Link",
description: "GitHub or repository URL (optional)",
}),
content: fields.markdoc({
label: "Full Description",
description: "Detailed project information",
extension: "md",
options: {
image: {
directory: "src/assets/projects",
publicPath: "@assets/projects/",
},
},
components: {
Spotify: block({
label: "Spotify Playlist",
schema: {
url: fields.text({ label: "Playlist ID" }),
},
}),
},
}),
},
}),
blog: collection({
label: "Blog Posts",
path: "src/content/blog/**",
slugField: "title",
entryLayout: "content",
format: {
contentField: "content",
},
schema: {
title: fields.slug({
name: { label: "Post Title" },
}),
description: fields.text({
label: "Description",
multiline: true,
description: "SEO description and excerpt",
}),
image: fields.image({
label: "Cover Image",
directory: "src/assets/blog",
publicPath: "@assets/blog/",
validation: { isRequired: true },
description: "Blog post cover image",
}),
publishDate: fields.date({
label: "Publish Date",
validation: { isRequired: true },
}),
updatedDate: fields.date({
label: "Updated Date",
description: "Last update date (optional)",
}),
tags: fields.array(fields.text({ label: "Tag" }), {
label: "Tags",
itemLabel: (props) => props.value,
description: "Blog post tags",
}),
content: fields.markdoc({
label: "Content",
description: "Blog post content",
options: {
image: {
directory: "src/assets/blog",
publicPath: "@assets/blog/",
},
},
components: {
Spotify: block({
label: "Spotify Embed",
schema: {
url: fields.text({
label: "Spotify URL",
description:
"Full Spotify URL (track, album, playlist, or podcast)",
validation: { isRequired: true },
}),
},
}),
YouTube: block({
label: "YouTube Video",
schema: {
id: fields.text({
label: "Video ID",
description: "YouTube video ID (optional if URL is provided)",
}),
url: fields.text({
label: "YouTube URL",
description: "Full YouTube URL (optional if ID is provided)",
}),
},
}),
Twitter: block({
label: "Twitter/X Embed",
schema: {
url: fields.text({
label: "Tweet URL",
description: "Full Twitter/X URL",
}),
id: fields.text({
label: "Tweet ID",
description: "Tweet ID (optional if URL is provided)",
}),
username: fields.text({
label: "Username",
description: "Twitter username (optional if URL is provided)",
}),
},
}),
},
}),
},
}),
hackathons: collection({
label: "Hackathons",
path: "src/content/hackathons/*",
slugField: "title",
format: {
contentField: "content",
},
schema: {
title: fields.slug({
name: { label: "Hackathon Name" },
}),
location: fields.text({
label: "Location",
description: 'City, venue, or "Virtual"',
}),
description: fields.text({
label: "Description",
multiline: true,
description: "Brief hackathon summary",
}),
startDate: fields.date({
label: "Start Date",
validation: { isRequired: true },
}),
endDate: fields.date({
label: "End Date",
description: "Last day of event (optional)",
}),
logo: fields.image({
label: "Event Logo",
directory: "src/assets/hackathons",
publicPath: "@assets/hackathons/",
description: "Optional event logo",
}),
sourceLink: fields.url({
label: "Project Link",
description: "GitHub repo or project URL (optional)",
}),
content: fields.markdoc({
label: "Full Description",
description: "Detailed information about the hackathon and project",
extension: "md",
}),
},
}),
},
});