This repository has been archived on 2025-12-01. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
BreadnetV3/web/src/site.config.ts
2025-11-13 18:08:12 +13:00

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",
};