14 lines
288 B
TypeScript
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;
|
|
}
|