Files
e-tib.com/src/payload/blocks/JobListing.tsx
Marc Mintel d14122005d Initial commit: E-TIB production hardening & E2E foundation
Former-commit-id: ef04fca3d76375630c05aac117bf586953f3b657
2026-04-28 19:11:38 +02:00

23 lines
545 B
TypeScript

import { EtibBlock } from './types';
import { JobListingBlock as JobListingComponent } from '@/components/blocks/JobListingBlock';
export const JobListingBlock: EtibBlock = {
slug: 'jobListing',
interfaceName: 'JobListingBlock',
render: JobListingComponent,
fields: [
{
name: 'title',
type: 'text',
localized: true,
defaultValue: 'Aktuelle Stellenangebote',
},
{
name: 'showFairs',
type: 'checkbox',
defaultValue: true,
label: 'Nächste Messetermine anzeigen',
},
],
};