devscard/src/types/testimonials-section.ts
2023-01-16 21:46:53 +01:00

14 lines
288 B
TypeScript

import type { Photo, SectionConfig, Social } from './common';
export interface Testimonial {
image: Photo;
author: string;
relation: string;
content: string;
socials: Social[];
}
export interface TestimonialsSection {
testimonials: Testimonial[];
config: SectionConfig;
}