feat: antolatzailea erakusten du

This commit is contained in:
2025-09-24 18:29:02 +02:00
parent 011df14398
commit 0642066612
5 changed files with 137 additions and 0 deletions

View File

@@ -1,8 +1,14 @@
import type { Erakundea } from "./Erakundea";
import type { ImageMedia } from "./ImageMedia";
import type { Zikloa } from "./Zikloa";
import dayjs from "dayjs";
import "dayjs/locale/eu";
export interface Elkarlana {
label: string;
erakundeak?: Erakundea[];
}
export interface Ekintza {
id: string;
slug: string;
@@ -11,6 +17,7 @@ export interface Ekintza {
titularra: string;
deskribapena: string;
hitzordua: string;
elkarlana?: Elkarlana;
sarrera: {
label: string;
deskribapena: string;

View File

@@ -0,0 +1,7 @@
import type { ImageMedia } from "./ImageMedia";
export interface Erakundea {
izena: string;
logo?: ImageMedia;
esteka?: string;
}