@@ -24,7 +24,7 @@ export const StartContentType = contentType({
2424 } ,
2525 title : {
2626 type : 'string' ,
27- displayName : 'Title' ,
27+ displayName : 'Teaser Title' ,
2828 group : 'Information' ,
2929 } ,
3030 description : {
@@ -54,71 +54,85 @@ export const StartContentType = contentType({
5454 displayName : 'Hide Site Footer' ,
5555 group : 'Advanced' ,
5656 } ,
57- // Metadata group
57+ // SEO group
5858 site_title : {
5959 type : 'string' ,
6060 displayName : 'Title' ,
61+ group : 'SEO' ,
6162 } ,
6263 keywords : {
63- type : 'string' ,
64+ type : 'array' ,
65+ items : {
66+ type : 'string' ,
67+ } ,
6468 displayName : 'Keywords' ,
69+ group : 'SEO' ,
6570 } ,
6671 page_description : {
6772 type : 'string' ,
6873 displayName : 'Page Description' ,
74+ group : 'SEO' ,
6975 } ,
7076 disable_indexing : {
7177 type : 'boolean' ,
7278 displayName : 'Disable Indexing' ,
79+ group : 'SEO' ,
7380 } ,
7481 // siteSettings group
75- content_pages : {
82+ contact_pages : {
7683 type : 'contentReference' ,
7784 allowedTypes : [ '_page' ] ,
78- displayName : 'Content Pages' ,
85+ displayName : 'Contact Pages' ,
7986 } ,
8087 global_news : {
8188 type : 'contentReference' ,
8289 allowedTypes : [ '_page' ] ,
8390 displayName : 'Global News' ,
91+ group : 'SiteSettings' ,
8492 } ,
85- logo_type : {
93+ search_page : {
8694 type : 'contentReference' ,
8795 allowedTypes : [ '_page' ] ,
88- displayName : 'Logo Type' ,
96+ displayName : 'Search Page' ,
97+ group : 'SiteSettings' ,
8998 } ,
90- search_page : {
99+ logo_type : {
91100 type : 'contentReference' ,
92101 allowedTypes : [ '_page' ] ,
93- displayName : 'Search Page' ,
102+ displayName : 'Logo Type' ,
103+ group : 'SiteSettings' ,
94104 } ,
95105 products : {
96106 type : 'array' ,
97107 items : {
98108 type : 'link' ,
99109 } ,
100110 displayName : 'Products' ,
111+ group : 'SiteSettings' ,
101112 } ,
102113 company_information : {
103114 type : 'array' ,
104115 items : {
105116 type : 'link' ,
106117 } ,
107118 displayName : 'Company Information' ,
119+ group : 'SiteSettings' ,
108120 } ,
109121 local_news : {
110122 type : 'array' ,
111123 items : {
112124 type : 'link' ,
113125 } ,
114126 displayName : 'Local News' ,
127+ group : 'SiteSettings' ,
115128 } ,
116129 customer_zone : {
117130 type : 'array' ,
118131 items : {
119132 type : 'link' ,
120133 } ,
121134 displayName : 'Customer Zone' ,
135+ group : 'SiteSettings' ,
122136 } ,
123137 } ,
124138} ) ;
@@ -132,7 +146,7 @@ function ComponentWrapper({ children, node }: ComponentContainerProps) {
132146 return < div { ...pa ( node ) } > { children } </ div > ;
133147}
134148
135- function StartPage ( { opti } : StartProps ) {
149+ function Start ( { opti } : StartProps ) {
136150 return (
137151 < >
138152 < div
@@ -179,4 +193,4 @@ function StartPage({ opti }: StartProps) {
179193 ) ;
180194}
181195
182- export default StartPage ;
196+ export default Start ;
0 commit comments