doing basic layout
This commit is contained in:
19
web/src/site.config.ts
Normal file
19
web/src/site.config.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
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",
|
||||
};
|
||||
Reference in New Issue
Block a user