This commit is contained in:
2026-05-11 16:24:14 +07:00
commit 6a48d6351c
313 changed files with 41936 additions and 0 deletions
+27
View File
@@ -0,0 +1,27 @@
export interface FooterData {
brand: {
logo: { image: string; href: string };
description: string;
social: Array<{ icon: string; href: string }>;
};
explore: {
heading: string;
links: Array<{ label: string; href: string }>;
};
contact: {
heading: string;
address: string;
phone: string;
email: string;
};
newsletter: {
heading: string;
description: string;
placeholder: string;
buttonText: string;
};
bottom: {
copyright: string;
links: Array<{ label: string; href: string }>;
};
}