20 lines
375 B
TypeScript
20 lines
375 B
TypeScript
interface SiteConfig {
|
|
author: string;
|
|
title: string;
|
|
description: string;
|
|
lang: string;
|
|
ogLocale: string;
|
|
themeColorLight: string;
|
|
themeColorDark: string;
|
|
}
|
|
|
|
export const siteConfig: SiteConfig = {
|
|
author: "breadone",
|
|
title: "@breadone",
|
|
description: "Tha Breadsite",
|
|
lang: "en-GB",
|
|
ogLocale: "en_GB",
|
|
themeColorLight: "#f4f4f9",
|
|
themeColorDark: "#1d1f21",
|
|
};
|