mirror of
https://github.com/DerTyp7/f1r3wave-website.git
synced 2025-10-28 20:42:12 +01:00
36 lines
575 B
TypeScript
36 lines
575 B
TypeScript
export interface HomeConfig {
|
|
headline: string;
|
|
text: string;
|
|
buttonText: string;
|
|
}
|
|
|
|
export interface ContactLink {
|
|
url: string;
|
|
hoverColor: string;
|
|
image: {
|
|
src: string;
|
|
alt: string;
|
|
};
|
|
}
|
|
|
|
export interface ContactConfig {
|
|
headline: string;
|
|
links: ContactLink[];
|
|
imprint: {
|
|
enable: boolean;
|
|
headline: string;
|
|
name: string;
|
|
address: string;
|
|
country: string;
|
|
email: string;
|
|
}
|
|
}
|
|
|
|
export interface AppConfig {
|
|
home: HomeConfig;
|
|
contact: ContactConfig;
|
|
}
|
|
|
|
export interface ConfigContextType {
|
|
config: AppConfig | null;
|
|
} |