ready for staging

This commit is contained in:
djagoo 2025-05-11 14:52:32 +02:00
parent e6ee25a18c
commit fe179300fd
Signed by: djagoo
GPG key ID: E478970FA1D8880B
12 changed files with 1193 additions and 0 deletions

34
types/generated/components.d.ts vendored Normal file
View file

@ -0,0 +1,34 @@
import type { Schema, Struct } from '@strapi/strapi';
export interface AboutAbout extends Struct.ComponentSchema {
collectionName: 'components_about_abouts';
info: {
displayName: 'about';
};
attributes: {
aboutPhoto: Schema.Attribute.Media<
'images' | 'files' | 'videos' | 'audios'
>;
aboutText: Schema.Attribute.String;
};
}
export interface HeroHero extends Struct.ComponentSchema {
collectionName: 'components_hero_heroes';
info: {
displayName: 'hero';
};
attributes: {
heroDescription: Schema.Attribute.String;
heroText: Schema.Attribute.String;
};
}
declare module '@strapi/strapi' {
export module Public {
export interface ComponentSchemas {
'about.about': AboutAbout;
'hero.hero': HeroHero;
}
}
}