feat: add contact data and styling for the Contact page

This commit is contained in:
2025-05-26 23:45:39 +02:00
parent e08c2d4013
commit 805bd07eb4
4 changed files with 84 additions and 88 deletions
+19
View File
@@ -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;
}