-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtypes.ts
More file actions
42 lines (37 loc) · 692 Bytes
/
types.ts
File metadata and controls
42 lines (37 loc) · 692 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import { ReactNode } from 'react';
export interface Testimonial {
id: number;
parentName: string;
childName: string;
childAge: string;
content: string;
avatar?: string;
}
export interface Program {
id: string;
title: string;
age: string;
description: string;
color: string;
icon: ReactNode;
features: string[];
timings: string;
}
export interface Activity {
id: string;
title: string;
description: string;
icon: ReactNode;
}
export interface Staff {
id: string;
name: string;
role: string;
image: string;
}
export interface GalleryItem {
id: string;
src: string;
category: 'classroom' | 'outdoor' | 'event' | 'activity';
alt: string;
}