Initial commit

This commit is contained in:
2025-09-14 21:04:33 +07:00
committed by GitHub
commit c448c54207
64 changed files with 19602 additions and 0 deletions
@@ -0,0 +1,23 @@
{
"kind": "singleType",
"collectionName": "abouts",
"info": {
"singularName": "about",
"pluralName": "abouts",
"displayName": "About",
"description": "Write about yourself and the content you create"
},
"options": {
"draftAndPublish": false
},
"pluginOptions": {},
"attributes": {
"title": {
"type": "string"
},
"blocks": {
"type": "dynamiczone",
"components": ["shared.media", "shared.quote", "shared.rich-text", "shared.slider"]
}
}
}
+9
View File
@@ -0,0 +1,9 @@
'use strict';
/**
* about controller
*/
const { createCoreController } = require('@strapi/strapi').factories;
module.exports = createCoreController('api::about.about');
+9
View File
@@ -0,0 +1,9 @@
'use strict';
/**
* about router.
*/
const { createCoreRouter } = require('@strapi/strapi').factories;
module.exports = createCoreRouter('api::about.about');
+9
View File
@@ -0,0 +1,9 @@
'use strict';
/**
* about service.
*/
const { createCoreService } = require('@strapi/strapi').factories;
module.exports = createCoreService('api::about.about');