doing basic layout

This commit is contained in:
2025-11-13 18:08:12 +13:00
parent f5dea95cc2
commit 422cfeb94e
9 changed files with 724 additions and 19 deletions

19
web/src/site.config.ts Normal file
View 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",
};