-
Notifications
You must be signed in to change notification settings - Fork 0
/
siteConfig.js
32 lines (31 loc) · 901 Bytes
/
siteConfig.js
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
const siteConfig = {
assets: {
postscripts: ["theme-toggle.js"],
prescripts: ["theme-init.js"],
stylesheets: ["index.css"],
},
metadata: {
author: "Joshua Cerdenia",
brand: "J. C.",
// copyright: `© ${new Date().getFullYear()} Joshua Cerdenia`,
description: "A Website",
email: "[email protected]",
icon: "/images/egret.jpeg",
image: "/images/egret.jpeg",
siteUrl: "https://j.cerdenia.com",
},
redirects: {
feed: "/rss.xml",
music: "https://cerdenia.com",
},
socials: {
items: [
["GitHub", "https://github.com/jcerdenia", "bi bi-github"],
// ["X", "https://x.com/jc_erde", "bi bi-twitter-x"],
["Email", `mailto:[email protected]`, "bi bi-envelope-fill"],
["RSS", "/rss.xml", "bi bi-rss-fill"],
],
useIcons: true,
},
};
export const { assets, socials, metadata, redirects } = siteConfig;