home and about page

This commit is contained in:
Schneider Roland
2025-01-26 11:06:15 +01:00
parent 86dda89db9
commit 04c436cb34
76 changed files with 2036 additions and 176 deletions

View File

@@ -0,0 +1,33 @@
{
"kind": "collectionType",
"collectionName": "yoga_achivements",
"info": {
"singularName": "yoga-achivement",
"pluralName": "yoga-achivements",
"displayName": "YogaAchievements",
"description": ""
},
"options": {
"draftAndPublish": true
},
"pluginOptions": {},
"attributes": {
"title": {
"type": "string"
},
"image": {
"type": "media",
"multiple": false,
"required": false,
"allowedTypes": [
"images",
"files",
"videos",
"audios"
]
},
"name": {
"type": "string"
}
}
}

View File

@@ -0,0 +1,7 @@
/**
* yoga-achivement controller
*/
import { factories } from '@strapi/strapi'
export default factories.createCoreController('api::yoga-achivement.yoga-achivement');

View File

@@ -0,0 +1,7 @@
/**
* yoga-achivement router
*/
import { factories } from '@strapi/strapi';
export default factories.createCoreRouter('api::yoga-achivement.yoga-achivement');

View File

@@ -0,0 +1,7 @@
/**
* yoga-achivement service
*/
import { factories } from '@strapi/strapi';
export default factories.createCoreService('api::yoga-achivement.yoga-achivement');