-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsite.config.ts
42 lines (40 loc) · 1.27 KB
/
site.config.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
import type { SiteConfig } from "@/types";
export const siteConfig: SiteConfig = {
// Used as both a meta property (src/components/BaseHead.astro L:31 + L:49) & the generated satori png (src/pages/og-image/[slug].png.ts)
author: "Muhammed Emin Boydak",
// Meta property used to construct the meta title property, found in src/components/BaseHead.astro L:11
title: "emin's logbook",
// Meta property used as the default description meta property
description: " ",
// HTML lang property, found in src/layouts/Base.astro L:18
lang: "en-US",
// Meta property, found in src/components/BaseHead.astro L:42
ogLocale: "en_US",
// Date.prototype.toLocaleDateString() parameters, found in src/utils/date.ts.
date: {
locale: "en-US",
options: {
day: "numeric",
month: "short",
year: "numeric",
},
},
webmentions: {
link: "https://webmention.io/eminboydak.com/webmention",
},
};
// Used to generate links in both the Header & Footer.
export const menuLinks: Array<{ title: string; path: string }> = [
{
title: "home",
path: "/",
},
{
title: "about",
path: "/about/",
},
{
title: "blog",
path: "/posts/",
},
];