forked from UKSOURCE/hailearning.edu.vn
feat: add pricing page with API integration and dynamic rendering
This commit is contained in:
30
app/appointment/types.ts
Normal file
30
app/appointment/types.ts
Normal file
@@ -0,0 +1,30 @@
|
||||
export interface AppointmentHero {
|
||||
title: string;
|
||||
backgroundImage: string;
|
||||
subtitle: string;
|
||||
heading: string;
|
||||
description: string;
|
||||
}
|
||||
|
||||
export interface AppointmentForm {
|
||||
heading: string;
|
||||
fields: Array<{
|
||||
name: string;
|
||||
label: string;
|
||||
type: string;
|
||||
placeholder: string;
|
||||
required: boolean;
|
||||
colClass: string;
|
||||
}>;
|
||||
submitButton: {
|
||||
text: string;
|
||||
icon: string;
|
||||
buttonClass: string;
|
||||
};
|
||||
}
|
||||
|
||||
export interface AppointmentData {
|
||||
hero: AppointmentHero;
|
||||
visaOptions: string[];
|
||||
form: AppointmentForm;
|
||||
}
|
||||
Reference in New Issue
Block a user