feat: add contact data and styling for the Contact page
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
export interface ContactProps {
|
||||
email: string;
|
||||
businessEmail: string;
|
||||
socialLinks: SocialLink[];
|
||||
questionsAndAnswers: QuestionAndAnswer[];
|
||||
MapIframeUrl: string;
|
||||
phone: string;
|
||||
}
|
||||
|
||||
export interface SocialLink {
|
||||
platform: string;
|
||||
url: string;
|
||||
icon: string;
|
||||
}
|
||||
|
||||
export interface QuestionAndAnswer {
|
||||
question: string;
|
||||
answer: string;
|
||||
}
|
||||
Reference in New Issue
Block a user