16 lines
344 B
TypeScript
16 lines
344 B
TypeScript
import type { Detail, LocalImage, SectionConfig, Social, Tag } from './common';
|
|
|
|
export interface MainSection {
|
|
image: LocalImage;
|
|
fullName: string;
|
|
role: string;
|
|
details: Detail[];
|
|
description: string;
|
|
tags: Tag[];
|
|
action: {
|
|
label: string;
|
|
url: string;
|
|
};
|
|
socials: Social[];
|
|
config: Omit<SectionConfig, 'title'>;
|
|
}
|