Skip to content

Commit

Permalink
update home page schema
Browse files Browse the repository at this point in the history
  • Loading branch information
leon-luna-ray committed Feb 13, 2024
1 parent 2e60e6b commit b1e324f
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions schemas/pages/homePage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,33 @@ export default defineType({
}),
],
}),
defineField({
name: 'introSection',
title: 'Intro Section',
type: 'object',
fields: [
defineField({
name: 'title',
title: 'Section Title',
type: 'string',
}),
defineField({
name: 'subtitle',
title: 'Section Subtitle',
type: 'string',
}),
defineField({
name: 'intro',
title: 'Section Intro',
type: 'text',
}),
defineField({
name: 'body',
title: 'Section Body',
type: 'blockContent',
}),
],
}),
defineField({
name: 'aboutSection',
title: 'About Section',
Expand Down

0 comments on commit b1e324f

Please sign in to comment.