11 lines
158 B
TypeScript
11 lines
158 B
TypeScript
export type SocialLink = {
|
|
id: string;
|
|
label: string;
|
|
url: string;
|
|
iconUrl?: string;
|
|
};
|
|
|
|
export type SiteSettings = {
|
|
socialLinks: SocialLink[];
|
|
};
|